update - add replot and migration to godot 4.4
This commit is contained in:
14
scenes/characters/charplot/plot1/player.gd
Normal file
14
scenes/characters/charplot/plot1/player.gd
Normal file
@@ -0,0 +1,14 @@
|
||||
extends Node
|
||||
|
||||
# A simple script to rotate the model.
|
||||
@onready var anim = $"Root Scene/AnimationPlayer"
|
||||
|
||||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready():
|
||||
anim.play("walk")
|
||||
pass # Replace with function body.
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta):
|
||||
pass
|
||||
Reference in New Issue
Block a user