Class ColorTweenableVariable
Bindable variable that can tween over time towards a target color value. Uses an async implementation to tween using the job system.
Inherited Members
BindableVariable<Color>.ValueEquals(Color)
BindableVariableBase<Color>.BindingCount
BindableVariableBase<Color>.SetValueWithoutNotify(Color)
BindableVariableBase<Color>.BroadcastValue()
Namespace: UnityEngine.XR.Interaction.Toolkit.Utilities.Tweenables.Primitives
Assembly: Unity.XR.Interaction.Toolkit.dll
Syntax
public class ColorTweenableVariable : TweenableVariableAsyncBase<Color>, IReadOnlyBindableVariable<Color>, IDisposable
Methods
ScheduleTweenJob(ref TweenJobData<Color>)
Generate the tween job from the given job data and schedule the job for execution on a worker thread.
Declaration
protected override JobHandle ScheduleTweenJob(ref TweenJobData<Color> jobData)
Parameters
Type | Name | Description |
---|---|---|
TweenJobData<Color> | jobData | Typed job data used in tween job. |
Returns
Type | Description |
---|---|
JobHandle | Returns the handle identifying the scheduled job. |
Overrides
Implements
Unity.XR.CoreUtils.Bindings.Variables.IReadOnlyBindableVariable<T>