C# 클래스 Nez.Tweens.AbstractTweenable

AbstractTweenable serves as a base for any custom classes you might want to make that can be ticked. These differ from ITweens in that they dont implement the ITweenT interface. What does that mean? It just says that an AbstractTweenable is not just moving a value from start to finish. It can do anything at all that requires a tick each frame. The TweenChain is one example of AbstractTweenable for reference.
상속: ITweenable
파일 보기 프로젝트 열기: prime31/Nez

보호된 프로퍼티들

프로퍼티 타입 설명
_isCurrentlyManagedByTweenManager bool
_isPaused bool

공개 메소드들

메소드 설명
isRunning ( ) : bool
pause ( ) : void
recycleSelf ( ) : void
resume ( ) : void
start ( ) : void
stop ( bool bringToCompletion = false ) : void
tick ( ) : bool

메소드 상세

isRunning() 공개 메소드

public isRunning ( ) : bool
리턴 bool

pause() 공개 메소드

public pause ( ) : void
리턴 void

recycleSelf() 공개 메소드

public recycleSelf ( ) : void
리턴 void

resume() 공개 메소드

public resume ( ) : void
리턴 void

start() 공개 메소드

public start ( ) : void
리턴 void

stop() 공개 메소드

public stop ( bool bringToCompletion = false ) : void
bringToCompletion bool
리턴 void

tick() 공개 추상적인 메소드

public abstract tick ( ) : bool
리턴 bool

프로퍼티 상세

_isCurrentlyManagedByTweenManager 보호되어 있는 프로퍼티

AbstractTweenable are often kept around after they complete. This flag lets them know internally if they are currently being tweened by TweenManager so that they can re-add themselves if necessary.
protected bool _isCurrentlyManagedByTweenManager
리턴 bool

_isPaused 보호되어 있는 프로퍼티

protected bool _isPaused
리턴 bool