12 lines
288 B
C#
12 lines
288 B
C#
![]() |
using System.Collections.Generic;
|
||
|
using AlicizaX.AnimationFlow.Runtime;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace AlicizaX.AnimationFlow.Editor {
|
||
|
public class AnimationFlowSerialize {
|
||
|
public string flag;
|
||
|
[SerializeReference]
|
||
|
public List<ActionNode> nodes = new();
|
||
|
}
|
||
|
}
|