Skip to content

Instantly share code, notes, and snippets.

Data in Minecraft

What is a data in minecraft ? Its a file provided to the engine for it to load.

Assets

You can take a look at either https://minecraft.wiki/w/Resource_pack or neoforge-<version>-client-extra-aka-minecraft-resources.jar/assets. This covers pretty much every creative asset used by the game: images, models and even blockstates definition files.

Data

@Zleub
Zleub / sketch_180516a.pde
Created May 16, 2018 01:27
Example of arduino and processing communicating through usb serial
// Example by Tom Igoe
import processing.serial.*;
Serial myPort; // The serial port
//ArrayList<String> msg = new ArrayList<String>();
void setup() {
printArray(Serial.list());
myPort = new Serial(this, Serial.list()[1], 9600);