20 lines
231 B
GDScript
20 lines
231 B
GDScript
extends Node
|
|
|
|
class_name State
|
|
|
|
@export var player: CharacterBody2D # HIER hinzugefügt
|
|
|
|
signal Transitioned
|
|
|
|
func enter():
|
|
pass
|
|
|
|
func exit():
|
|
pass
|
|
|
|
func update(_delta: float):
|
|
pass
|
|
|
|
func physics_update(_delta: float):
|
|
pass
|