Merge pull request #2233 from MoritzBrueckner/fix-compilation

Fix compilation of some nodes
This commit is contained in:
Lubos Lenco 2021-06-16 08:10:03 +02:00 committed by GitHub
commit cbcc3e4e04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@ package armory.logicnode;
import iron.system.Input;
class GetKeyboardStartedNode extends LogicNode {
class GetMouseStartedNode extends LogicNode {
var m = Input.getMouse();
var buttonStarted: Null<String>;

View file

@ -4,7 +4,7 @@ import armory.trait.internal.CanvasScript;
import iron.Scene;
#if arm_ui
import zui.Canvas.Anchor;
import armory.ui.Canvas.Anchor;
#end
class OnCanvasElementNode extends LogicNode {