Skip to content

Commit

Permalink
receive log
Browse files Browse the repository at this point in the history
  • Loading branch information
Narazaka committed Dec 5, 2024
1 parent f8ce0d7 commit 2b72f67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions SyncTexture2D16.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ protected override void DoSyncColors()

public void ApplyReceiveColorsPartial(SyncTextureData16 data)
{
Debug.Log($"[SyncTexture] ApplyReceiveColorsPartial() [ReceiveEnabled={ReceiveEnabled}]");
Callback(nameof(SyncTextureCallbackListener.OnReceive));
if (!ReceiveEnabled) return;
var syncIndex = Array.IndexOf(DataList, data);
Expand Down
1 change: 1 addition & 0 deletions SyncTexture2D8.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ protected override void DoSyncColors()

public void ApplyReceiveColorsPartial(SyncTextureData8 data)
{
Debug.Log($"[SyncTexture] ApplyReceiveColorsPartial() [ReceiveEnabled={ReceiveEnabled}]");
Callback(nameof(SyncTextureCallbackListener.OnReceive));
if (!ReceiveEnabled) return;
var syncIndex = Array.IndexOf(DataList, data);
Expand Down

0 comments on commit 2b72f67

Please sign in to comment.