本文整理汇总了C#中LeagueSharp.Common.Menu.AddNoUltiMenu方法的典型用法代码示例。如果您正苦于以下问题:C# Menu.AddNoUltiMenu方法的具体用法?C# Menu.AddNoUltiMenu怎么用?C# Menu.AddNoUltiMenu使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LeagueSharp.Common.Menu
的用法示例。
在下文中一共展示了Menu.AddNoUltiMenu方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: OnLoad
public void OnLoad(Menu menu)
{
var cName = ObjectManager.Player.ChampionName;
var comboMenu = new Menu(cName + " - Combo", "dzaio.zilean.combo");
comboMenu.AddModeMenu(Mode.Combo, new[] { SpellSlot.Q, SpellSlot.W, SpellSlot.E, SpellSlot.R }, new[] { true, true, true, true });
comboMenu.AddManaManager(Mode.Combo, new[] { SpellSlot.Q, SpellSlot.W, SpellSlot.E, SpellSlot.R }, new[] { 30, 35, 20, 5 });
menu.AddSubMenu(comboMenu);
var harrassMenu = new Menu(cName + " - Harrass", "dzaio.zilean.harass");
harrassMenu.AddModeMenu(Mode.Harrass, new[] { SpellSlot.Q, SpellSlot.W }, new[] { true, true });
harrassMenu.AddManaManager(Mode.Harrass, new[] { SpellSlot.Q, SpellSlot.W, SpellSlot.E }, new[] { 30, 35, 20 });
menu.AddSubMenu(harrassMenu);
var farmMenu = new Menu(cName + " - Farm", "dzaio.zilean.farm");
farmMenu.AddModeMenu(Mode.Farm, new[] { SpellSlot.Q }, new[] { true });
farmMenu.AddManaManager(Mode.Farm, new[] { SpellSlot.Q }, new[] { 40 });
menu.AddSubMenu(farmMenu);
var miscMenu = new Menu(cName + " - Misc", "dzaio.zilean.misc");
{
miscMenu.AddItem(new MenuItem("dzaio.champion.zilean.antigpe", "E AntiGapcloser").SetValue(true));
miscMenu.AddItem(new MenuItem("dzaio.champion.zilean.autoult", "Auto Ult").SetValue(true));
miscMenu.AddItem(new MenuItem("dzaio.champion.zilean.autoult.mana", "Auto Ult Mana %").SetValue(new Slider(10)));
}
var drawMenu = new Menu(cName + " - Drawings", "dzaio.champion.zilean.drawings");
drawMenu.AddDrawMenu(_spells,Color.LightCoral);
menu.AddNoUltiMenu(true);
menu.AddSubMenu(drawMenu);
}