first commit
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
extends Node
|
||||
|
||||
class_name State
|
||||
|
||||
signal transitioned
|
||||
|
||||
func enter(_charReference : CharacterBody3D):
|
||||
#enter state
|
||||
pass
|
||||
|
||||
func exit():
|
||||
#exit state
|
||||
pass
|
||||
|
||||
func update(_delta : float):
|
||||
#process update
|
||||
pass
|
||||
|
||||
func physics_update(_delta : float):
|
||||
#physics_process update
|
||||
pass
|
||||
Reference in New Issue
Block a user