summaryrefslogtreecommitdiffhomepage
path: root/Racing-Game/4WheelCar/CarProperties.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Racing-Game/4WheelCar/CarProperties.gd')
-rw-r--r--Racing-Game/4WheelCar/CarProperties.gd23
1 files changed, 23 insertions, 0 deletions
diff --git a/Racing-Game/4WheelCar/CarProperties.gd b/Racing-Game/4WheelCar/CarProperties.gd
new file mode 100644
index 0000000..c4a5ad5
--- /dev/null
+++ b/Racing-Game/4WheelCar/CarProperties.gd
@@ -0,0 +1,23 @@
+extends Node
+
+var steerSplitA = 20
+var steerSplitB = 40
+var steerHeight = 2.6
+var steerLimit = 73
+var steerMinimum = 1
+
+var hp = 4.0
+var acceleration = 5
+# Declare member variables here. Examples:
+# var a = 2
+# var b = "text"
+
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+ pass # Replace with function body.
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+#func _process(delta):
+# pass