TODO.txt 355 B

123456789101112131415
  1. Text particles (render text to textures)
  2. Texture atlases with the new model spec system.
  3. Multiplayer
  4. Modular GUIs
  5. Useful regex-expressions:
  6. --------------------------------
  7. private int location_(.*);
  8. to
  9. protected UniformMatrix $1 = new UniformMatrix("$1");
  10. ------------------------------------
  11. super.loadInt\(location_(.*), (.)\);
  12. to
  13. $1.loadTexUnit($2);