grunk/src/equipment/spray.gd

13 lines
242 B
GDScript3
Raw Normal View History

class_name Spray extends Node3D
## Abstract base class for spraygun types
## Called each frame that this spray is being fired.
func fire() -> void:
pass
## Called each frame that this spray is not being fired.
func idle() -> void:
pass