| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- form formLightSelect
- {
- theme = res/common/default.theme
- layout = LAYOUT_HORIZONTAL
- style = noBorder
- alignment = ALIGN_TOP_HCENTER
- autoWidth = true
- autoHeight = true
- container lightingType
- {
- style = basic
- layout = LAYOUT_VERTICAL
- position = 0, 20
- size = 230, 210
-
- label
- {
- style = iconNoBorder
- size = 210, 20
- textAlignment = ALIGN_TOP_HCENTER
- text = Type
- }
-
- radioButton noLighting
- {
- style = iconNoBorder
- imageSize = 35, 35
- size = 200, 40
- text = No Light
- value = true
- }
- radioButton directional
- {
- style = iconNoBorder
- imageSize = 35, 35
- size = 200, 40
- text = Directional Light
- value = false
- }
- radioButton spot
- {
- style = iconNoBorder
- imageSize = 35, 35
- size = 200, 40
- text = Spot Light
- value = false
- }
- radioButton point
- {
- style = iconNoBorder
- imageSize = 35, 35
- size = 200, 40
- text = Point Light
- value = false
- }
- }
- container lightProperties
- {
- style = basic
- layout = LAYOUT_VERTICAL
- position = 0, 230
- size = 230, 380
-
- label
- {
- style = iconNoBorder
- size = 210, 20
- textAlignment = ALIGN_TOP_HCENTER
- text = Properties
- }
-
- slider redSlider
- {
- style = iconNoBorder
- size = 210, 60
- orientation = HORIZONTAL
- textAlignment = ALIGN_LEFT
- min = 0
- max = 1
- value = 1.0
- text = Red
- }
-
- slider greenSlider
- {
- style = iconNoBorder
- size = 210, 60
- orientation = HORIZONTAL
- textAlignment = ALIGN_LEFT
- min = 0
- max = 1
- value = 1.0
- text = Green
- }
- slider blueSlider
- {
- style = iconNoBorder
- size = 210, 60
- orientation = HORIZONTAL
- textAlignment = ALIGN_LEFT
- min = 0
- max = 1
- value = 1.0
- text = Blue
- }
- slider specularSlider
- {
- style = iconNoBorder
- size = 210, 60
- orientation = HORIZONTAL
- textAlignment = ALIGN_LEFT
- min = 1
- max = 500
- value = 1
- text = Specular
- }
- checkbox specularCheckBox
- {
- style = iconNoBorder
- imageSize = 35, 35
- size = 200, 40
- text = Enable Specular
- value = false
- }
- checkbox bumpedCheckBox
- {
- style = iconNoBorder
- imageSize = 35, 35
- size = 200, 40
- text = Enable BumpMapping
- value = false
- }
- }
- }
|