| 123456789101112131415161718192021222324252627282930313233 |
- form physicsScene
- {
- theme = res/common/default.theme
- layout = LAYOUT_VERTICAL
- style = noBorder
- width = 200
- height = 200
- alignment = ALIGN_BOTTOM_LEFT
- button shapeButton
- {
- style = buttonStyle
- autoWidth = true
- height = 40
- text = Sphere
- }
-
- button throwButton : shapeButton
- {
- text = Throw
- }
-
- button wireframeButton : shapeButton
- {
- text = Solid
- }
- button drawDebugButton : shapeButton
- {
- text = Normal
- }
- }
|