Added initial scenegraph node grouping support

This commit is contained in:
Alexander Bock
2017-10-13 00:17:28 -04:00
parent f1fd2b1960
commit ebd506975c
12 changed files with 200 additions and 23 deletions

5
scripts/scene_helper.lua Normal file
View File

@@ -0,0 +1,5 @@
mark_interesting_nodes = function(nodes)
for _, n in pairs(nodes) do
openspace.addTag(n, "GUI.Interesting")
end
end