Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

指定した関数呼び出しとコールバックのトレースログを抑制できるように変更 #7

Merged
merged 12 commits into from
Feb 21, 2024
6 changes: 6 additions & 0 deletions Samples~/MVS/TestScreen/Sample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ public void DoAction(string param1, string param2)
public string DoFunction(string param1, string param2)
=> WebGLHelper.CallFunction(nameof(DoFunction), param1, param2);

public void DoTraceLogSuppressedAction(string param1, string param2)
=> WebGLHelper.CallAction(nameof(DoTraceLogSuppressedAction), param1, param2);

public string DoTraceLogSuppressedFunction(string param1, string param2)
=> WebGLHelper.CallFunction(nameof(DoTraceLogSuppressedFunction), param1, param2);

protected override void ReleaseManagedResources() => onCallback.Dispose();
}
}