form formLightSelect { layout = LAYOUT_VERTICAL alignment = ALIGN_TOP_LEFT style = Empty container lightingType { layout = LAYOUT_VERTICAL position = 0, 20 width = 230 style = Form label { textAlignment = ALIGN_TOP_HCENTER text = Type fontSize = 18 } radioButton noLighting { text = No Light value = true } radioButton directional { text = Directional Light value = false } radioButton spot { text = Spot Light value = false } radioButton point { text = Point Light value = false } } container lightProperties { layout = LAYOUT_VERTICAL width = 230 style = Form label { textAlignment = ALIGN_TOP_HCENTER text = Properties fontSize = 18 } slider redSlider { height = 55 width = 100% orientation = HORIZONTAL textAlignment = ALIGN_LEFT min = 0 max = 1 value = 1.0 text = Red } slider greenSlider { height = 55 width = 100% orientation = HORIZONTAL textAlignment = ALIGN_LEFT min = 0 max = 1 value = 1.0 text = Green } slider blueSlider { height = 55 width = 100% orientation = HORIZONTAL textAlignment = ALIGN_LEFT min = 0 max = 1 value = 1.0 text = Blue } slider specularSlider { height = 55 width = 100% orientation = HORIZONTAL textAlignment = ALIGN_LEFT min = 1 max = 256 value = 64 text = Specular } checkbox specularCheckBox { text = Enable Specular value = false } checkbox bumpedCheckBox { text = Enable BumpMapping value = false } } }