diff options
| author | realtradam <[email protected]> | 2020-03-19 04:21:06 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2020-03-19 04:21:06 -0400 |
| commit | 727bd8009e3e1392d61f39326cf5a47e69af8cae (patch) | |
| tree | d48c54528ec051d1394de91a283df6a6f197f19b /Racing-Game/4WheelCar/Wheels/WheelCreation.gd | |
| parent | af6441b9b8b93e0b6abb16ec924e90a16e017a96 (diff) | |
| download | optimal-direction-727bd8009e3e1392d61f39326cf5a47e69af8cae.tar.gz optimal-direction-727bd8009e3e1392d61f39326cf5a47e69af8cae.zip | |
made steering based on actual wheel angle
Diffstat (limited to 'Racing-Game/4WheelCar/Wheels/WheelCreation.gd')
| -rw-r--r-- | Racing-Game/4WheelCar/Wheels/WheelCreation.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Racing-Game/4WheelCar/Wheels/WheelCreation.gd b/Racing-Game/4WheelCar/Wheels/WheelCreation.gd index 06f354e..c656b7c 100644 --- a/Racing-Game/4WheelCar/Wheels/WheelCreation.gd +++ b/Racing-Game/4WheelCar/Wheels/WheelCreation.gd @@ -25,7 +25,7 @@ func createWheel(locX, locY, type): wheeltemp.set_position(Vector2(locX,locY)) add_child(wheeltemp) wheeltemp.initVars(locX,locY) - + # add_child(tempA) elif(type == "back"): var wheeltemp_resource = load("res://4WheelCar/Wheels/BackWheel.tscn") |
