本文整理汇总了C#中Tile.FromBytes方法的典型用法代码示例。如果您正苦于以下问题:C# Tile.FromBytes方法的具体用法?C# Tile.FromBytes怎么用?C# Tile.FromBytes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Tile
的用法示例。
在下文中一共展示了Tile.FromBytes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestFromBytes
public void TestFromBytes()
{
Tile tile = new Tile();
tile.FromBytes(new byte[] { 1, 2, 3, 4 }, 0);
Assert.AreEqual((2 << 8) | 1, tile.TileSetId);
Assert.AreEqual((4 << 8) | 3, tile.TileId);
tile.FromBytes(new byte[] { 1, 2, 3, 4, 5 }, 1);
Assert.AreEqual((3 << 8) | 2, tile.TileSetId);
Assert.AreEqual((5 << 8) | 4, tile.TileId);
}
示例2: LoadJson
public override void LoadJson(JToken json)
{
this.Clear();
JToken token;
if ((token = json["Name"] as JValue) != null)
{
this.Name = token.Value<string>();
}
if ((token = json["Width"] as JValue) != null)
{
this.Width = token.Value<int>();
}
if ((token = json["Height"] as JValue) != null)
{
this.Height = token.Value<int>();
}
if ((token = json["Tiles"] as JArray) != null)
{
for (int i = 0; i < LayerCount; i++)
{
JValue token2 = token[i] as JValue;
byte[] bytes = Convert.FromBase64String(token2.Value<string>());
int length = this.Width * this.Height;
List<Tile> layer = this.Layers[i];
for (int j = 0; j < length; j++)
{
Tile tile = new Tile();
tile.FromBytes(bytes, j * 4);
layer[j] = tile;
}
}
}
}