14 lines
189 B
GDScript
14 lines
189 B
GDScript
extends Drone
|
|
|
|
func _ready() -> void:
|
|
self_body = self
|
|
|
|
func primary_action() -> float:
|
|
return -1
|
|
|
|
func secondary_action() -> float:
|
|
return -1
|
|
|
|
func model_ability() -> float:
|
|
return -1
|