C# 클래스 AbstractGoTweenCollection, wepwep

base class for TweenChains and TweenFlows
상속: AbstractGoTween
파일 보기 프로젝트 열기: encephalopathy/wepwep 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
_tweenFlows List

공개 메소드들

메소드 설명
AbstractGoTweenCollection ( GoTweenCollectionConfig, config ) : System.Collections
allTweenProperties ( ) : List
containsTweenProperty ( AbstractTweenProperty, property ) : bool
goTo ( float time ) : void

goes to the specified time clamping it from 0 to the total duration of the tween. if the tween is not playing it will be force updated to the time specified.

isValid ( ) : bool

we are always considered valid because our constructor adds us to Go and we start paused

pause ( ) : void

pauses playback

play ( ) : void

resumes playback

removeTweenProperty ( AbstractTweenProperty, property ) : bool
reverse ( ) : void

reverses playback. if going forward it will be going backward after this and vice versa.

tweensWithTarget ( object target ) : List

returns a list of all Tweens with the given target in the collection technically, this should be marked as internal

update ( float deltaTime ) : bool

tick method. if it returns true it indicates the tween is complete

비공개 메소드들

메소드 설명
changeTimeForFlowItem ( TweenFlowItem flowItem, float time ) : void

메소드 상세

AbstractGoTweenCollection() 공개 메소드

public AbstractGoTweenCollection ( GoTweenCollectionConfig, config ) : System.Collections
config GoTweenCollectionConfig,
리턴 System.Collections

allTweenProperties() 공개 메소드

public allTweenProperties ( ) : List
리턴 List

containsTweenProperty() 공개 메소드

public containsTweenProperty ( AbstractTweenProperty, property ) : bool
property AbstractTweenProperty,
리턴 bool

goTo() 공개 메소드

goes to the specified time clamping it from 0 to the total duration of the tween. if the tween is not playing it will be force updated to the time specified.
public goTo ( float time ) : void
time float
리턴 void

isValid() 공개 메소드

we are always considered valid because our constructor adds us to Go and we start paused
public isValid ( ) : bool
리턴 bool

pause() 공개 메소드

pauses playback
public pause ( ) : void
리턴 void

play() 공개 메소드

resumes playback
public play ( ) : void
리턴 void

removeTweenProperty() 공개 메소드

public removeTweenProperty ( AbstractTweenProperty, property ) : bool
property AbstractTweenProperty,
리턴 bool

reverse() 공개 메소드

reverses playback. if going forward it will be going backward after this and vice versa.
public reverse ( ) : void
리턴 void

tweensWithTarget() 공개 메소드

returns a list of all Tweens with the given target in the collection technically, this should be marked as internal
public tweensWithTarget ( object target ) : List
target object
리턴 List

update() 공개 메소드

tick method. if it returns true it indicates the tween is complete
public update ( float deltaTime ) : bool
deltaTime float
리턴 bool

프로퍼티 상세

_tweenFlows 보호되어 있는 프로퍼티

protected List _tweenFlows
리턴 List