1234567891011121314 |
- Texture atlases with the new model spec system.
- Multiplayer
- Modular GUIs
- Useful regex-expressions:
- --------------------------------
- private int location_(.*);
- to
- protected UniformMatrix $1 = new UniformMatrix("$1");
- ------------------------------------
- super.loadInt\(location_(.*), (.)\);
- to
- $1.loadTexUnit($2);
|