form terrainForm { style = Empty size = 100%, 100% consumeInputEvents = false padding { left = 5 top = 5 right = 50 bottom = 5 } container main { style = Form width = 230 height = 310 consumeInputEvents = false padding { top = -5 left = -5 } label plusButton { x = 12 visible = false text = + fontSize = 44 } label minusButton : plusButton { visible = true text = - } container settings { consumeInputEvents = false checkbox wireframe { position = 10, 50 text = Wireframe (1) textAlignment = ALIGN_VCENTER_LEFT fontSize = 16 checked = false } checkbox patches : wireframe { position = 10, 90 text = Debug Patches (2) checked = false } checkbox physics : wireframe { position = 10, 130 text = Debug Physics (3) checked = false } checkbox lod : wireframe { position = 10, 170 text = Level of Detail (4) checked = true } checkbox culling : wireframe { position = 10, 210 text = Frustum Culling (5) checked = true } checkbox snapToGround : wireframe { position = 10, 250 text = Snap To Ground (6) checked = true } } } container physicsSettings { style = Form position = 0, 310 width = 230 layout = LAYOUT_VERTICAL consumeInputEvents = false padding { top = 5 left = 5 right = 5 bottom = 5 } button dropSphere { width = 100% text = Drop Sphere } button dropBox : dropSphere { text = Drop Box } button clearAll : dropSphere { text = Remove All } } container messageBox { style = Form alignment = ALIGN_VCENTER_HCENTER width = 500 height = 50 consumeInputEvents = false visible = false label message { consumeInputEvents = false size = 100%, 100% font = res/ui/arial.gpb fontSize = 24 textAlignment = ALIGN_VCENTER_HCENTER } } }