| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- 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
- }
- }
- }
|