Gentry
Results
1
issues of
Gentry
``` public class TestPatch : MonoBehaviour { private void Update() { if (Input.GetKeyDown(KeyCode.Space)) { CallOneAsync("hello"); } } [Patch] public async void CallOneAsync(string name) { Debug.Log(name); await Task.Delay(1000); Debug.Log("TestTask"); } }...