Class ImageColorAffordanceReceiver
Affordance receiver applying a color theme to a UGUI Image component
Inheritance
ImageColorAffordanceReceiver
Inherited Members
Object.FindObjectsByType<T>(FindObjectsSortMode)
Object.FindObjectsByType<T>(FindObjectsInactive, FindObjectsSortMode)
Object.FindFirstObjectByType<T>()
Object.FindAnyObjectByType<T>()
Object.FindFirstObjectByType<T>(FindObjectsInactive)
Object.FindAnyObjectByType<T>(FindObjectsInactive)
Namespace: UnityEngine.XR.Interaction.Toolkit.AffordanceSystem.Receiver.UI
Assembly: Unity.XR.Interaction.Toolkit.dll
Syntax
[AddComponentMenu("Affordance System/Receiver/UI/Image Color Affordance Receiver", 12)]
[HelpURL("https://docs.unity3d.com/Packages/com.unity.xr.interaction.toolkit@2.5/api/UnityEngine.XR.Interaction.Toolkit.AffordanceSystem.Receiver.UI.ImageColorAffordanceReceiver.html")]
public class ImageColorAffordanceReceiver : ColorAffordanceReceiver, IAffordanceStateReceiver<Color>, IAsyncAffordanceStateReceiver, IAffordanceStateReceiver
Properties
canvasGroup
If set, alpha changes will be applied to the CanvasGroup rather than the UnityEngine.UI.Image.
Declaration
public CanvasGroup canvasGroup { get; set; }
Property Value
Type | Description |
---|---|
CanvasGroup |
ignoreAlpha
Ignore alpha changes in color theme.
Declaration
public bool ignoreAlpha { get; set; }
Property Value
Type | Description |
---|---|
bool |
image
Image to apply the color to.
Declaration
public Image image { get; set; }
Property Value
Type | Description |
---|---|
Image |
Methods
GetCurrentValueForCapture()
Function used to get the current value of the receiver's target property. Is overriden for material properties or other targets where the initial state exists outside the receiver.
Declaration
protected override Color GetCurrentValueForCapture()
Returns
Type | Description |
---|---|
Color | Initial value. |
Overrides
OnAffordanceValueUpdated(Color)
Method that is called when the typed affordance value is updated. Implement this method in a derived class to apply the current affordance value, such as setting a material property or raising an event.
Declaration
protected override void OnAffordanceValueUpdated(Color newValue)
Parameters
Type | Name | Description |
---|---|---|
Color | newValue | New typed affordance value. |
Overrides
OnEnable()
See MonoBehaviour.
Declaration
protected override void OnEnable()