本文整理汇总了C#中Microsoft.Xna.Framework.Graphics.Model.isExit方法的典型用法代码示例。如果您正苦于以下问题:C# Model.isExit方法的具体用法?C# Model.isExit怎么用?C# Model.isExit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Xna.Framework.Graphics.Model
的用法示例。
在下文中一共展示了Model.isExit方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DrawTile
/*************************************
* Draw a single tile
*************************************/
private void DrawTile(float a_x, float a_y, float a_scale, Model.Tile a_tile)
{
int textureIndex = 0;
Color tileColor;
//Block tile
if (a_tile.isBlocked() || a_tile.isTrap())
textureIndex = 1;
//Door tile
if (a_tile.isExit())
textureIndex = 2;
if (a_tile.isTrap() && a_tile.isWalkedOn())
a_tile.setWalkedOn(false);
// Set colorChanger on trap tiles
if (a_tile.isTrap())
{
tileColor = colorChanger.CurrentColor;
}
else
{
tileColor = Color.White;
}
//Get the source rectangle (pixels on the texture) for the tile type
Rectangle sourceRectangle = new Rectangle(textureTileSize * textureIndex, 0, textureTileSize, textureTileSize);
//Destination rectangle in windows coordinates only scaling
Rectangle destRect = new Rectangle((int)a_x, (int)a_y, (int)a_scale, (int)a_scale);
spriteBatch.Draw(tileTexture, destRect, sourceRectangle, tileColor);
}