You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.0 KiB
50 lines
1.0 KiB
{ |
|
"init": "assets/lua/scene1-init.lua", |
|
"camera": { |
|
"name": "Camera", |
|
"translate": [ 0.0, 0.0, 1.0 ], |
|
"rotate": [ 0.0, 0.0, -1.0 ], |
|
"scale": [ 1.0, 1.0, 1.0 ], |
|
"type": "perspective", |
|
"script": { |
|
"type": "lua", |
|
"name": "assets/lua/cameracontroller.lua" |
|
} |
|
}, |
|
"quad": [ |
|
{ |
|
"name": "Quad", |
|
"translate": [ 0.0, 0.0, 0.0 ], |
|
"rotate": [ 0.0, 0.0, 0.0 ], |
|
"scale": [ 1.0, 1.0, 1.0 ], |
|
"color": [ 1.0, 1.0, 1.0, 1.0 ], |
|
"texture": "assets/gfx/test.png" |
|
}, |
|
{ |
|
"name": "Quad 2", |
|
"translate": [ 1.1, 0.0, 0.0 ], |
|
"rotate": [ 0.0, 0.0, 0.0 ], |
|
"scale": [ 1.0, 1.0, 1.0 ], |
|
"color": [ 0.5, 0.6, 0.8, 1.0 ], |
|
"texture": "assets/gfx/test.png" |
|
}, |
|
{ |
|
"name": "Quad 3", |
|
"translate": [ 2.2, 0.0, 0.0 ], |
|
"rotate": [ 0.0, 0.0, 0.0 ], |
|
"scale": [ 1.0, 1.0, 1.0 ], |
|
"color": [ 1.0, 1.0, 1.0, 1.0 ], |
|
"texture": "assets/gfx/test-inverted.png" |
|
} |
|
], |
|
"text": [ |
|
{ |
|
"name": "Text", |
|
"content": "Hello World!", |
|
"font": "assets/fnt/open-sans", |
|
"font-size": 24, |
|
"line-spacing": 1.0, |
|
"width": 150 |
|
} |
|
] |
|
}
|
|
|