本文整理汇总了C#中Menu.combobox方法的典型用法代码示例。如果您正苦于以下问题:C# Menu.combobox方法的具体用法?C# Menu.combobox怎么用?C# Menu.combobox使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Menu
的用法示例。
在下文中一共展示了Menu.combobox方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: hitchance
public static HitChance hitchance(this Spell.SpellBase spell, Menu m)
{
switch (m.combobox(spell.Slot + "hit"))
{
case 0:
{
return HitChance.High;
}
case 1:
{
return HitChance.Medium;
}
case 2:
{
return HitChance.Low;
}
}
return HitChance.Unknown;
}
示例2: Qlogic
public static void Qlogic(Menu m, Obj_AI_Base target, bool Draw = false)
{
var pos = new Vector3();
var danger = target.CountEnemeis(600) > 3;
switch (m.combobox("Qmode"))
{
case 0:
{
if (danger)
{
var ally = EntityManager.Heroes.Allies.OrderByDescending(a => a.CountAllies(750)).FirstOrDefault(a => a.IsKillable(1000) && !a.IsMe);
if (ally != null)
{
pos = ally.ServerPosition;
}
}
if (target.IsKillable(user.GetAutoAttackRange() - 100))
{
pos = user.ServerPosition.Extend(target.ServerPosition, -400).To3D();
}
if (!target.IsKillable(user.GetAutoAttackRange()))
{
pos = Q.GetPrediction(target).CastPosition;
}
}
break;
case 1:
{
if (target.IsKillable(user.GetAutoAttackRange() - 100))
{
pos = user.ServerPosition.Extend(target.ServerPosition, -400).To3D();
}
}
break;
case 2:
{
if (!target.IsKillable(user.GetAutoAttackRange()))
{
pos = Q.GetPrediction(target).CastPosition;
}
}
break;
case 3:
{
pos = Game.CursorPos;
}
break;
}
if (!Draw)
{
Q.Cast(pos);
}
if (Draw)
{
Circle.Draw(SharpDX.Color.White, 100, pos);
}
}