diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-17 13:47:16 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-11-17 13:47:16 -0500 |
commit | 72603f1641bb400be6c9b0604273a4bd38932136 (patch) | |
tree | 50188f29a1af54d25c8fab91b3cc1ce170ca09aa /src/engine.cpp | |
parent | 0c535a1526d725fbd242c5ce348a7f2252d1fd34 (diff) |
ui-coord mouse interacts with world-coord entity
Diffstat (limited to 'src/engine.cpp')
-rw-r--r-- | src/engine.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/engine.cpp b/src/engine.cpp index 25e3cd3..a80dfe3 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -76,6 +76,9 @@ int Engine::init(void) systems.system<UISystem>().get())); script->addToGameNamespace("dialogClear", [this] { events.emit<HideDialog>(); }); + script->addToGameNamespace("uiToWorldCoord", + bindInstance(&RenderSystem::uiToWorldCoord, + systems.system<RenderSystem>().get())); script->init(); |