示例#1
0
        private void StartPantherExperience()
        {
            if (!mObjLoaded || !mImageTargetFound)
            {
                return;
            }

            // Animate the black panther's jump animation
            Animation animationJump = mBlackPantherModel.GetAnimation("01");

            animationJump.Listener = this;
            animationJump.Play();
        }