10 lines
141 B
GDScript3
10 lines
141 B
GDScript3
|
|
class_name WalkingState
|
||
|
|
|
||
|
|
extends State
|
||
|
|
|
||
|
|
func update():
|
||
|
|
|
||
|
|
if Global.player.velocity.length() == 0.0:
|
||
|
|
pass
|
||
|
|
##transition.emit("IdleState")
|