This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends Camera | |
export (NodePath) var follow_this_path = null | |
export var target_distance = 4.0 | |
export var target_height = 1.0 | |
var follow_this = null | |
var last_lookat | |
var look_around = 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extends VehicleBody | |
const STEER_SPEED = 1 | |
const STEER_LIMIT = 0.4 | |
var steer_target = 0 | |
var velocity = Vector3() | |
var fwd_mps = 0 | |
export var engine_force_value = 200 #set to 350 in editor because of Weight Rigidbody set to 1000 |