Skip to content

Instantly share code, notes, and snippets.

@SiunCyclone
Last active June 1, 2020 08:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SiunCyclone/2a1647c5d2816bde76ca80718d1df894 to your computer and use it in GitHub Desktop.
Save SiunCyclone/2a1647c5d2816bde76ca80718d1df894 to your computer and use it in GitHub Desktop.
public class AnimStateController : MonoBehaviour {
public bool fireAnimationEvents;
public AnimGraphAsset animStateDefinition;
void OnDisable() {
Deinitialize();
}
public void Initialize(){}
public void Deinitialize(){}
public void UpdatePresentationState(){}
public void ApplyPresentationState(){}
IAnimGraphInstance m_animGraph;
IGraphLogic m_animGraphLogic;
Animator m_Animator;
PlayableGraph m_PlayableGraph;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment