本文整理汇总了C#中HUD.extraLifeMario方法的典型用法代码示例。如果您正苦于以下问题:C# HUD.extraLifeMario方法的具体用法?C# HUD.extraLifeMario怎么用?C# HUD.extraLifeMario使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HUD
的用法示例。
在下文中一共展示了HUD.extraLifeMario方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ItemCollisionTest
public void ItemCollisionTest(SoundEffects sound, HUD hud, IList<IItem> items)
{
Rectangle marioRectangle = myMario.GetRectangle();
Rectangle itemRectangle;
Rectangle intersectionRectangle;
Queue<IItem> doomedItems = new Queue<IItem>();
foreach (IItem item in items)
{
itemRectangle = item.GetRectangle();
intersectionRectangle = Rectangle.Intersect(marioRectangle, itemRectangle);
if (!intersectionRectangle.IsEmpty)
{
// todo
switch (item.GetItemName())
{
case "Coin":
//myMario.Coin();
hud.addCoinMario();
hud.increaseScoreMario(Constants.coinValue);
hud.achievements.CoinGet();
break;
case "Mushroom":
sound.Powerup();
myMario.Mushroom();
hud.increaseScoreMario(Constants.mushroomValue);
hud.achievements.MushroomGet();
break;
case "Fireflower":
sound.Powerup();
myMario.Fireflower();
hud.increaseScoreMario(Constants.fireflowerValue);
hud.achievements.FlowerGet();
break;
case "Oneup":
sound.OneUp();
hud.extraLifeMario();
hud.increaseScoreMario(Constants.oneUpValue);
break;
case "Star":
sound.Powerup();
myMario.Star();
hud.increaseScoreMario(Constants.starValue);
hud.achievements.StarGet();
break;
default:
// nothing
break;
}
doomedItems.Enqueue(item);
}
}
while (doomedItems.Count() > 0)
{
IItem item = doomedItems.Dequeue();
items.Remove(item);
}
}