3D Editor treaks
This commit is contained in:
parent
0b279163de
commit
822c60d839
27 changed files with 254 additions and 124 deletions
26
3DScene/rsc/scene/script.lua
Normal file
26
3DScene/rsc/scene/script.lua
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
Meshes = "meshes.obj"
|
||||
|
||||
Camera = {
|
||||
pos = { 0, 5, 0 },
|
||||
target = { 0, 0, 0 },
|
||||
up = { 0, 0, 1 },
|
||||
size = { 600, 800 },
|
||||
}
|
||||
|
||||
Lights = {
|
||||
{
|
||||
pos = { -0.5, 3.5, 1 },
|
||||
intensity = 1
|
||||
},
|
||||
{
|
||||
pos = { 0, 0, 1 },
|
||||
intensity = 0.5
|
||||
},
|
||||
}
|
||||
|
||||
RenderSettings = {
|
||||
depth = 1,
|
||||
spray = 1,
|
||||
multisampling = 1,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue