mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
11 lines
198 B
C#
11 lines
198 B
C#
using Godot;
|
|
using System;
|
|
|
|
public partial class Lighting : Node2D
|
|
{
|
|
public override void _Ready()
|
|
{
|
|
GetNode<SpineSprite>("SpineSprite").GetAnimationState().SetAnimation("walk", true, 0);
|
|
}
|
|
}
|