Exemplo n.º 1
0
            public override void InitDetailCheckObject(Object obj)
            {
                AnimationClip   clip    = obj as AnimationClip;
                AnimClipChecker checker = currentChecker as AnimClipChecker;

                checkMap.Add(checker.animLength, clip.length);
                checkMap.Add(checker.animWrapMode, clip.wrapMode.ToString());
                checkMap.Add(checker.animLoop, clip.isLooping.ToString());
                checkMap.Add(checker.animFrameRate, clip.frameRate);
                checkMap.Add(checker.animLegacy, clip.legacy.ToString());
            }
Exemplo n.º 2
0
 public AnimClipDetail(Object obj, AnimClipChecker checker) : base(obj, checker)
 {
 }