summaryrefslogtreecommitdiffstats
path: root/Raft.gd
diff options
context:
space:
mode:
authordusoleil <howcansocksbereal@gmail.com>2022-09-15 10:28:24 -0400
committerdusoleil <howcansocksbereal@gmail.com>2022-09-15 10:28:24 -0400
commita2c28a27280c186c2717f303ef52a865da6dd94f (patch)
tree24c862acddc9ff0b705bf00c53c8affe3d8c5c85 /Raft.gd
parent79a4d45d970a2cb44baee39aeff6294cb3156c01 (diff)
downloadgame_jam49-a2c28a27280c186c2717f303ef52a865da6dd94f.tar.gz
game_jam49-a2c28a27280c186c2717f303ef52a865da6dd94f.zip
Update movement scripts after Main scene reorganization merge
Diffstat (limited to 'Raft.gd')
-rw-r--r--Raft.gd8
1 files changed, 0 insertions, 8 deletions
diff --git a/Raft.gd b/Raft.gd
deleted file mode 100644
index 75f5f63..0000000
--- a/Raft.gd
+++ /dev/null
@@ -1,8 +0,0 @@
-extends RigidBody
-
-export var ang_acceleration = 60.0
-
-func _integrate_forces(_state):
- var stick = Input.get_axis("ship_right","ship_left")
- if stick != 0.0:
- self.add_torque(Vector3.UP*stick*ang_acceleration)