您最多选择25个主题 主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

24 行
566 B

using UnityEngine;
using UnityEngine.Playables;
public interface IGraphState
{
void UpdatePresentationState(bool firstUpdate, GameTime time, float deltaTime);
}
public interface IGraphLogic
{
void UpdateGraphLogic(GameTime time, float deltaTime);
}
public interface IAnimGraphInstance
{
void Shutdown();
void SetPlayableInput(int portId, Playable playable, int playablePort);
void GetPlayableOutput(int portId, ref Playable playable, ref int playablePort);
void ApplyPresentationState(GameTime time, float deltaTime);
}