nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame Contribute Delete
243 Bytes
namespace Unity.VisualScripting
{
public interface IStateTransition : IGraphElementWithDebugData, IConnection<IState, IState>
{
void Branch(Flow flow);
void OnEnter(Flow flow);
void OnExit(Flow flow);
}
}