TODO.txt 416 B

12345678910111213141516
  1. Particles and post-processing is broken.
  2. Texture atlases with the new model spec system.
  3. Multiplayer
  4. Modular GUIs
  5. - Make text variables uniform/ change text rendering method
  6. Useful regex-expressions:
  7. --------------------------------
  8. private int location_(.*);
  9. to
  10. protected UniformMatrix $1 = new UniformMatrix("$1");
  11. ------------------------------------
  12. super.loadInt\(location_(.*), (.)\);
  13. to
  14. $1.loadTexUnit($2);