-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGSAITargetAcceleration.gd
More file actions
33 lines (24 loc) · 887 Bytes
/
GSAITargetAcceleration.gd
File metadata and controls
33 lines (24 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# A desired linear and angular amount of acceleration requested by the steering
# system.
# @category - Base types
class_name GSAITargetAcceleration
# Linear acceleration
var linear := Vector3.ZERO
# Angular acceleration
var angular := 0.0
# Sets the linear and angular components to 0.
func set_zero() -> void:
linear.x = 0.0
linear.y = 0.0
linear.z = 0.0
angular = 0.0
# Adds `accel`'s components, multiplied by `scalar`, to this one.
func add_scaled_accel(accel: GSAITargetAcceleration, scalar: float) -> void:
linear += accel.linear * scalar
angular += accel.angular * scalar
# Returns the squared magnitude of the linear and angular components.
func get_magnitude_squared() -> float:
return linear.length_squared() + angular * angular
# Returns the magnitude of the linear and angular components.
func get_magnitude() -> float:
return sqrt(get_magnitude_squared())