Targeting System 2.0.0
Plugin for multipurpose targeting and visual effects.
|
Represents ReactiveCommand<Unit> More...
Public Member Functions | |
ReactiveCommand () | |
CanExecute is always true. | |
ReactiveCommand (IObservable< bool > canExecuteSource, bool initialValue=true) | |
CanExecute is changed from canExecute sequence. | |
bool | Execute () |
Push null to subscribers. | |
void | ForceExecute () |
Force push parameter to subscribers. | |
ReactiveCommand () | |
CanExecute is always true. | |
ReactiveCommand (IObservable< bool > canExecuteSource, bool initialValue=true) | |
CanExecute is changed from canExecute sequence. | |
bool | Execute (T parameter) |
Push parameter to subscribers when CanExecute. More... | |
void | ForceExecute (T parameter) |
Force push parameter to subscribers. | |
IDisposable | Subscribe (IObserver< T > observer) |
Subscribe execute. More... | |
void | Dispose () |
Stop all subscription and lock CanExecute is false. | |
bool | Execute (T parameter) |
IDisposable | Subscribe (IObserver< T > observer) |
Properties | |
IReadOnlyReactiveProperty< bool > | CanExecute [get] |
bool | IsDisposed [get] |
Properties inherited from UniRx.IReactiveCommand< T > | |
IReadOnlyReactiveProperty< bool > | CanExecute [get] |
Represents ReactiveCommand<Unit>
bool UniRx.ReactiveCommand< T >.Execute | ( | T | parameter | ) |
Push parameter to subscribers when CanExecute.
Implements UniRx.IReactiveCommand< T >.
IDisposable UniRx.ReactiveCommand< T >.Subscribe | ( | IObserver< T > | observer | ) |
Subscribe execute.
Implements UniRx.IObservable< T >.
|
get |
Implements UniRx.IReactiveCommand< T >.