16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 16:19:19 +02:00

async mesh loading

This commit is contained in:
maj00r
2026-06-16 01:04:37 +02:00
parent 2f90246907
commit 9574d2051b
35 changed files with 3239 additions and 859 deletions

View File

@@ -37,6 +37,8 @@ public:
// update minimap objects
void
update_map();
void
ensure_map_index();
// returns current active group, or null_handle if group stack is empty
group_handle
handle() const;
@@ -69,6 +71,7 @@ private:
// members
group_map m_groupmap; // map of established node groups
std::stack<scene::group_handle> m_activegroup; // helper, group to be assigned to newly created nodes
bool m_map_index_built { false };
};
extern node_groups Groups;