本文整理汇总了C#中MCGalaxy.Player.SendSpawn方法的典型用法代码示例。如果您正苦于以下问题:C# Player.SendSpawn方法的具体用法?C# Player.SendSpawn怎么用?C# Player.SendSpawn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MCGalaxy.Player
的用法示例。
在下文中一共展示了Player.SendSpawn方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: SpawnPlayer
public void SpawnPlayer(Player p)
{
//p.spawning = true;
if (spawns.Count != 0)
{
Random random = new Random();
int rnd = random.Next(0, spawns.Count);
ushort x, y, z, rotx;
x = spawns[rnd].x;
y = spawns[rnd].y;
z = spawns[rnd].z;
ushort x1 = (ushort)((0.5 + x) * 32);
ushort y1 = (ushort)((1 + y) * 32);
ushort z1 = (ushort)((0.5 + z) * 32);
rotx = spawns[rnd].rotx;
unchecked
{
p.SendSpawn((byte)-1, p.name, x1, y1, z1, (byte)rotx, 0);
}
//p.health = 100;
}
else
{
ushort x = (ushort)((0.5 + mapOn.spawnx) * 32);
ushort y = (ushort)((1 + mapOn.spawny) * 32);
ushort z = (ushort)((0.5 + mapOn.spawnz) * 32);
ushort rotx = mapOn.rotx;
ushort roty = mapOn.roty;
unchecked
{
p.SendSpawn((byte)-1, p.name, x, y, z, (byte)rotx, (byte)roty);
}
}
//p.spawning = false;
}