8 lines
144 B
GDScript
8 lines
144 B
GDScript
class_name C_Velocity
|
|
extends Component
|
|
|
|
@export var velocity: Vector3 = Vector3.ZERO
|
|
|
|
func _init(vel: Vector3 = Vector3.ZERO):
|
|
velocity = vel
|