blob: da472341140354b67942c5998826f733a732bb33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  | 
LightObject (type = "infinite") {
    Param (attrib = "intensity") {
        float { 3.0 }
    }
    Color (attrib = "light") {
        float[3] { { 0.7, 1.0, 0.1 } }
    }
}
LightObject (type = "point") {
    Param (attrib = "intensity") {
        float { 0.5 }
    }
}
LightObject (type = "spot") {
    Color (attrib = "light") {
        float[4] { { 0.1, 0.0, 0.1, 1.0 } }
    }
}
  |