Pellet sync
This commit is contained in:
@@ -7,7 +7,7 @@ namespace Marro.PacManUdon
|
||||
{
|
||||
public static void Append(this byte[] target, byte[] value, ref int index)
|
||||
{
|
||||
Debug.Log($"ByteUtils Append {nameof(value)}.Length: {value.Length}, {nameof(target)}.Length : {target.Length}, {nameof(index)}: {index}");
|
||||
//Debug.Log($"ByteUtils Append {nameof(value)}.Length: {value.Length}, {nameof(target)}.Length : {target.Length}, {nameof(index)}: {index}");
|
||||
Array.Copy(value, 0, target, index, value.Length);
|
||||
index += value.Length;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user