mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-05-02 16:59:37 -05:00
19 lines
485 B
Plaintext
19 lines
485 B
Plaintext
-- This asset requires OpenSpace to be built with the OPENSPACE_MODULE_SPOUT enabled
|
|
|
|
local assetHelper = asset.require("util/asset_helper")
|
|
|
|
local RenderablePointsCloud = {
|
|
Identifier = "RenderablePointsCloud",
|
|
Renderable = {
|
|
Type = "RenderablePointsCloud",
|
|
Color = {1.0, 1.0, 0.0},
|
|
Size = 50,
|
|
},
|
|
GUI = {
|
|
Path = "/Examples"
|
|
}
|
|
}
|
|
|
|
local objects = { RenderablePointsCloud }
|
|
assetHelper.registerSceneGraphNodesAndExport(asset, objects)
|