Skip to content

Commit

Permalink
指定した関数呼び出しとコールバックのトレースログを抑制できるように変更 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
sus-yoshikane-t committed Feb 21, 2024
1 parent da203f5 commit 84f1b10
Show file tree
Hide file tree
Showing 8 changed files with 783 additions and 78 deletions.
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();
}
}

0 comments on commit 84f1b10

Please sign in to comment.