本文整理汇总了C#中Player.OpenWindow方法的典型用法代码示例。如果您正苦于以下问题:C# Player.OpenWindow方法的具体用法?C# Player.OpenWindow怎么用?C# Player.OpenWindow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Player
的用法示例。
在下文中一共展示了Player.OpenWindow方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OpenEnchantmentTable
public static bool OpenEnchantmentTable(Player a, BCS b)
{
a.OpenWindow(WindowType.EnchantmentTable, b.pos);
return false;
}
示例2: OpenFurnace
public static bool OpenFurnace(Player a, BCS b)
{
a.OpenWindow(WindowType.Furnace, b.pos);
return false;
}
示例3: OpenDispenser
public static bool OpenDispenser(Player a, BCS b)
{
a.OpenWindow(WindowType.Dispenser, b.pos);
return false;
}
示例4: OpenCraftingTable
public static bool OpenCraftingTable(Player a, BCS b)
{
a.OpenWindow(WindowType.Workbench, b.pos);
return false;
}
示例5: OpenChest
public static bool OpenChest(Player a, BCS b)
{
if (!BlockData.IsOpaqueCube(a.level.GetBlock((int)b.pos.x, (int)b.pos.y + 1, (int)b.pos.z)))
a.OpenWindow(WindowType.Chest, b.pos);
return false;
}
示例6: OpenBrewingStand
public static bool OpenBrewingStand(Player a, BCS b)
{
a.OpenWindow(WindowType.BrewingStand, b.pos);
return false;
}
示例7: Open
public virtual void Open(Player player)
{
_Viewers.Add(player);
player.OpenWindow(this);
}