BBGamelib.flash.imp.Movie.SkipFrame C# (CSharp) 메소드

SkipFrame() 공개 메소드

public SkipFrame ( int frame ) : void
frame int
리턴 void
		public virtual void SkipFrame(int frame){
			if (_currentFrame != frame) {
				_currentFrame = frame;
				FrameObject frameObj = _define.frames [_currentFrame];
				removeUnusedPlaceobjs (frameObj);
			}
		}
		public virtual void GotoFrame(int frame){