-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInteropTest.cs
50 lines (41 loc) · 1.28 KB
/
InteropTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
using System;
using ReactUnity.UGUI;
using UnityEngine;
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Utilities;
namespace MyInterop
{
public class InteropTest : MonoBehaviour
{
public event Action<string> OnKeyPress;
IDisposable dispose;
public Action AddKeyPressListener(object callback)
{
var cb = ReactUnity.Helpers.Callback.From(callback);
Action<string> listener = (val) => cb.Call(val);
OnKeyPress += listener;
return () => OnKeyPress -= listener;
}
void OnEnable()
{
var ctx = GetComponent<ReactUnityUGUI>();
if (ctx)
{
ctx.AdvancedOptions.AfterStart.AddListener(() => {
dispose = InputSystem.onAnyButtonPress.Call(x => {
OnKeyPress?.Invoke(x.displayName);
ctx.Context.Script.WebGLCompatDispatchEvent("OnKeyPress", x.displayName);
});
});
}
}
private void OnDestroy()
{
dispose?.Dispose();
}
public static void TestDebug()
{
Debug.Log("Interop Test Works");
}
}
}