summaryrefslogtreecommitdiffstats
path: root/Raft.gd
diff options
context:
space:
mode:
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)