README 820 B

1234567891011121314151617181920212223242526272829
  1. ReAntTweakBar is a minimal wrapper for the AntTweakBar library that allows
  2. "bars" to be saved and load from disk. Changing your existing app that users
  3. AntTweakBar to use ReAntTweakBar is trivial.
  4. This directory should contain:
  5. README
  6. example.cpp
  7. example (option example binary)
  8. temp.rbr (optional example ReAntTweakBar output)
  9. Many (but not all) variable types are supported. I'll try to keep track them
  10. here:
  11. TW_TYPE_BOOLCPP
  12. TW_TYPE_QUAT4F
  13. TW_TYPE_COLOR4F
  14. TW_TYPE_COLOR3F
  15. TW_TYPE_DIR3F
  16. TW_TYPE_BOOL32
  17. TW_TYPE_INT32
  18. TW_TYPE_FLOAT
  19. TW_TYPE_DOUBLE
  20. and
  21. custom TwTypes made with TwDefineEnum
  22. I'm working on adding the rest on an as-needed basis. Adding a new type only
  23. requires changes in a few places...
  24. Look in example.cpp for an example of how to compile with ReAntTweakBar and use
  25. it.