本文整理匯總了C#中Chunk.Update方法的典型用法代碼示例。如果您正苦於以下問題:C# Chunk.Update方法的具體用法?C# Chunk.Update怎麽用?C# Chunk.Update使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Chunk
的用法示例。
在下文中一共展示了Chunk.Update方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: SendChunk
/// <summary>
/// Sends a player a Chunk
/// </summary>
/// <param name='c'>
/// The chunk to send
/// </param>
public void SendChunk(Chunk c)
{
if (c == null) return;
byte[] CompressedData = c.GetCompressedData();
if (CompressedData == null) { SendPreChunk(c, 0); return; }
SendPreChunk(c, 1);
//Send Chunk Data
byte[] bytes = new byte[17 + CompressedData.Length];
util.EndianBitConverter.Big.GetBytes((int)(c.x * 16)).CopyTo(bytes, 0);
util.EndianBitConverter.Big.GetBytes((int)0).CopyTo(bytes, 4);
util.EndianBitConverter.Big.GetBytes((int)(c.z * 16)).CopyTo(bytes, 6);
bytes[10] = 15;
bytes[11] = 127;
bytes[12] = 15;
util.EndianBitConverter.Big.GetBytes(CompressedData.Length).CopyTo(bytes, 13);
CompressedData.CopyTo(bytes, 17);
SendRaw(0x33, bytes);
c.Update(level, this);
lock (VisibleChunks)
if (!VisibleChunks.Contains(c.point)) VisibleChunks.Add(c.point);
}