Exemplo n.º 1
0
 private void RpcSendFullTexture(byte[] textureData)
 {
     PaintCanvas.SetAllTextureData(textureData.Decompress());
 }
Exemplo n.º 2
0
 // Deprecated, use SendDrawingComplete() instead
 public override void SendFullTexture(RpcArgs args)
 {
     byte[] textureData = args.GetNext <byte[]>();
     paintCanvas.SetAllTextureData(textureData.Compress());
 }