void setAnimation(AnimationInfo animationInfo)
 {
     throw new CKLBExceptionNotImplemented();
 }
Exemple #2
0
        public void exitAnim(AnimationInfo animation, uint msPlayTime, int timeShift)
        {
			if(CppObject != IntPtr.Zero) {

                uint type           = 0;
                uint affected       = 0;
                float[] param_array = null;

                if(animation != null) {
                    animation.getAnimInfo(ref type, ref affected, ref param_array);
                }

                CKLBUIScore_setExitAnimation(CppObject, msPlayTime, timeShift, type, affected, param_array);
            } else {
				throw new CKLBExceptionNullCppObject();
            }
		}
 void setAnimation(AnimationInfo animationInfo)
 {
     throw new CKLBExceptionNotImplemented();
 }