physics.form 411 B

12345678910111213141516171819202122232425262728
  1. form physicsScene
  2. {
  3. layout = LAYOUT_VERTICAL
  4. width = 200
  5. alignment = ALIGN_BOTTOM_LEFT
  6. button shapeButton
  7. {
  8. width = 100%
  9. text = Sphere
  10. }
  11. button throwButton : shapeButton
  12. {
  13. text = Throw
  14. }
  15. button wireframeButton : shapeButton
  16. {
  17. text = Solid
  18. }
  19. button drawDebugButton : shapeButton
  20. {
  21. text = Normal
  22. }
  23. }