12345678910111213141516 |
- All Masters, Renderers, etc. should be objects, not static
- Reflectivity uniform vars
- Multiplayer
- Modular GUIs
- - Make text variables uniform/ change text rendering method
- Useful regex-expressions:
- --------------------------------
- private int location_(.*);
- to
- protected UniformMatrix $1 = new UniformMatrix("$1");
- ------------------------------------
- super.loadInt\(location_(.*), (.)\);
- to
- $1.loadTexUnit($2);
|