diff options
author | jacopograndi <jacopo.grandi@outlook.it> | 2022-01-19 20:08:32 +0100 |
---|---|---|
committer | jacopograndi <jacopo.grandi@outlook.it> | 2022-01-19 20:08:32 +0100 |
commit | c930eb8a0cabaeb3651e2dc7f94a26310fb2dcf3 (patch) | |
tree | 5256261a9510a9ac8e1150c8902ffefbec32ddac /scripts/placer.gd | |
parent | 10d700152deeea4a8c6acea1124b9f9ea4905486 (diff) |
turrets implementation finished
Diffstat (limited to 'scripts/placer.gd')
-rw-r--r-- | scripts/placer.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/placer.gd b/scripts/placer.gd index 991f333..18e72e8 100644 --- a/scripts/placer.gd +++ b/scripts/placer.gd @@ -132,7 +132,7 @@ func inst_path (pos, rot): instance.transform.origin = pos + normal * 0.25; instance.transform.basis = Basis(rot); instance.set_name("path") - # remove collision depencency + # TODO multiplayer remove collision depencency colliding_node.transform.basis = Basis(rot); return instance |