BBGamelib.flash.imp.Movie.SkipFrame C# (CSharp) Method

SkipFrame() public method

public SkipFrame ( int frame ) : void
frame int
return 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){