We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d61d330 commit fcb5378Copy full SHA for fcb5378
Assets/MRTK/SDK/Features/UX/Interactable/Scripts/Events/InteractableOnClickReceiver.cs
@@ -21,6 +21,11 @@ public class InteractableOnClickReceiver : ReceiverBase
21
/// </summary>
22
public InteractableOnClickReceiver(UnityEvent ev) : base(ev, "OnClick") { }
23
24
+ /// <summary>
25
+ /// Creates receiver for raising OnClick events
26
+ /// </summary>
27
+ public InteractableOnClickReceiver() : this(new UnityEvent()) { }
28
+
29
/// <inheritdoc />
30
public override void OnUpdate(InteractableStates state, Interactable source)
31
{
0 commit comments