From 2e7c27e3934fd9c73f7e6cd414a50a9a17e1669c Mon Sep 17 00:00:00 2001 From: realtradam Date: Thu, 19 Mar 2020 03:06:35 -0400 Subject: Wheels have been made more modular and easier to modify properties --- Racing-Game/4WheelCar/CarProperties.gd | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Racing-Game/4WheelCar/CarProperties.gd (limited to 'Racing-Game/4WheelCar/CarProperties.gd') 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 -- cgit v1.2.3