add semicolons to raw haxe code

This commit is contained in:
Yvon
2022-06-18 22:41:21 +03:00
committed by Nat Quayle Nelson
parent b975ff2e14
commit 5085d32ac8
9 changed files with 12 additions and 11 deletions

View File

@@ -18,7 +18,7 @@
(when !(= direction Vector3.ZERO)
(set direction (direction.normalized))
// TODO for some reason, the Vector3 addition operator is only found when used in a raw haxe expr:
(pivot.lookAt #{translation + direction}# Vector3.UP))
(pivot.lookAt #{translation + direction;}# Vector3.UP))
(set _velocity.x (* direction.x speed))
(set _velocity.z (* direction.z speed))