예제 #1
0
파일: AnimNode.cs 프로젝트: TagsRocks/skill
        public override void CopyFrom(AnimNodeData other)
        {
            if (other.NodeType != this.NodeType)
            {
                return;
            }
            base.CopyFrom(other);
            AnimNodeBlendBaseData s = other as AnimNodeBlendBaseData;

            this.NewLayer = s.NewLayer;
        }
예제 #2
0
 public AnimNodeBlendBaseItem(AnimNodeBlendBaseData data)
     : base(data)
 {
 }