mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-03 18:19:38 -06:00
15 lines
254 B
Plaintext
15 lines
254 B
Plaintext
-- Loading a module with a direct dependency
|
|
return {
|
|
ScenePath = ".",
|
|
Camera = {
|
|
Position = {0.0, 0.0, 0.0},
|
|
Rotation = {0.0, 0.0, 0.0, 0.0},
|
|
Focus = "Root"
|
|
},
|
|
Modules = {
|
|
"no-dependency",
|
|
"child"
|
|
}
|
|
}
|
|
|