-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathInteropTest.cs
51 lines (43 loc) · 1.35 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
51
using System;
using ReactUnity.Helpers;
using ReactUnity.Reactive;
using ReactUnity.UGUI;
using UnityEngine;
using UnityEngine.InputSystem;
using UnityEngine.InputSystem.Utilities;
namespace MyInterop
{
public class InteropTest : MonoBehaviour
{
public ReactAction<string> OnKeyPress = new ReactAction<string>();
IDisposable dispose;
public ReactiveValue<float> DeltaTime = new ReactiveValue<float>();
[Obsolete]
public Action AddKeyPressListener(object callback) => OnKeyPress.AddListener(callback);
void OnEnable()
{
var ctx = GetComponent<ReactRendererUGUI>();
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");
}
void Update()
{
DeltaTime.Value = Time.deltaTime;
}
}
}