mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-04 02:29:49 -06:00
15 lines
287 B
Plaintext
15 lines
287 B
Plaintext
-- Loading a module with a direct dependency in a different folder
|
|
return {
|
|
ScenePath = "scene-folder",
|
|
Camera = {
|
|
Position = {0.0, 0.0, 0.0},
|
|
Rotation = {0.0, 0.0, 0.0, 0.0},
|
|
Focus = "Root"
|
|
},
|
|
Modules = {
|
|
"no-dependency",
|
|
"child"
|
|
}
|
|
}
|
|
|