mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 17:26:01 +08:00
9 lines
164 B
C#
9 lines
164 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class Spineboy : SpineSprite {
|
|
public override void _Ready() {
|
|
GetAnimationState().SetAnimation("run", true, 0);
|
|
}
|
|
}
|