physics.form 570 B

123456789101112131415161718192021222324252627282930313233
  1. form physicsScene
  2. {
  3. theme = res/common/default.theme
  4. layout = LAYOUT_VERTICAL
  5. style = noBorder
  6. width = 200
  7. height = 200
  8. alignment = ALIGN_BOTTOM_LEFT
  9. button shapeButton
  10. {
  11. style = buttonStyle
  12. autoWidth = true
  13. height = 40
  14. text = Sphere
  15. }
  16. button throwButton : shapeButton
  17. {
  18. text = Throw
  19. }
  20. button wireframeButton : shapeButton
  21. {
  22. text = Solid
  23. }
  24. button drawDebugButton : shapeButton
  25. {
  26. text = Normal
  27. }
  28. }