TODO.txt 550 B

1234567891011121314151617
  1. Particles and post-processing is broken.
  2. I am suspecting that it would be laughably easy to merge the normalmapped and non-normalmapped entity shaders.
  3. Texture atlases and transparency vars with the new model spec system.
  4. Multiplayer
  5. Modular GUIs
  6. - Make text variables uniform/ change text rendering method
  7. Useful regex-expressions:
  8. --------------------------------
  9. private int location_(.*);
  10. to
  11. protected UniformMatrix $1 = new UniformMatrix("$1");
  12. ------------------------------------
  13. super.loadInt\(location_(.*), (.)\);
  14. to
  15. $1.loadTexUnit($2);