19 lines
310 B
GDScript
19 lines
310 B
GDScript
# meta-name: State script
|
|
# meta-description: A script containing the basic definition of a state
|
|
# meta-default: true
|
|
# meta-space-indent: 4
|
|
|
|
extends _BASE_
|
|
|
|
func enter() -> void:
|
|
pass
|
|
|
|
func exit() -> void:
|
|
pass
|
|
|
|
func update(_delta: float) -> void:
|
|
pass
|
|
|
|
func physics_update(_delta: float) -> void:
|
|
pass
|