Esempio n. 1
0
 public void Reset()
 {
     StateInterCommands.Reset();
     AnimationCallbackCommands.Reset();
     FirstPersonAnimationEventCallBack.Reset();
     ThirdPersonAnimationEventCallBack.Reset();
 }
        public static UnityAnimationEventCommands Deserialize(UnityAnimationEventCommands typeTag, BinaryReader reader)
        {
            if (typeTag != null)
            {
                typeTag.Reset();
            }
            else
            {
                typeTag = new UnityAnimationEventCommands();
            }

            typeTag.Read(reader);
            return(typeTag);
        }
Esempio n. 3
0
 public static UnityAnimationEventCommands Merge(UnityAnimationEventCommands basevalue, UnityAnimationEventCommands patchvalue)
 {
     basevalue.Reset();
     basevalue.CopyFrom(patchvalue);
     return(basevalue);
 }