IsHarmful -> IsHazard

This commit is contained in:
Colin McMillen 2020-03-08 18:30:46 -04:00
parent 299ab41ec2
commit fa4784fc49
2 changed files with 5 additions and 5 deletions

View File

@ -94,7 +94,7 @@ namespace SemiColinGames {
if (box.Intersect(player) != null) { if (box.Intersect(player) != null) {
Debug.AddRect(box, Color.Cyan); Debug.AddRect(box, Color.Cyan);
reject = true; reject = true;
if (box.Tile?.IsHarmful ?? false) { if (box.Tile?.IsHazard ?? false) {
Debug.AddRect(box, Color.Red); Debug.AddRect(box, Color.Red);
harmedByCollision = true; harmedByCollision = true;
} }
@ -112,7 +112,7 @@ namespace SemiColinGames {
if (box.Intersect(player) != null) { if (box.Intersect(player) != null) {
Debug.AddRect(box, Color.Cyan); Debug.AddRect(box, Color.Cyan);
reject = true; reject = true;
if (box.Tile?.IsHarmful ?? false) { if (box.Tile?.IsHazard ?? false) {
Debug.AddRect(box, Color.Red); Debug.AddRect(box, Color.Red);
harmedByCollision = true; harmedByCollision = true;
} }
@ -130,7 +130,7 @@ namespace SemiColinGames {
if (groundIntersect.Intersect(box) != null) { if (groundIntersect.Intersect(box) != null) {
Debug.AddRect(box, Color.Cyan); Debug.AddRect(box, Color.Cyan);
standingOnGround = true; standingOnGround = true;
if (box.Tile?.IsHarmful ?? false) { if (box.Tile?.IsHazard ?? false) {
Debug.AddRect(box, Color.Red); Debug.AddRect(box, Color.Red);
harmedByCollision = true; harmedByCollision = true;
} }

View File

@ -15,11 +15,11 @@ namespace SemiColinGames {
Position = position; Position = position;
this.texture = texture; this.texture = texture;
this.textureSource = textureSource; this.textureSource = textureSource;
IsHarmful = isHazard; IsHazard = isHazard;
} }
public Rectangle Position { get; private set; } public Rectangle Position { get; private set; }
public bool IsHarmful = false; public bool IsHazard = false;
public void Draw(SpriteBatch spriteBatch) { public void Draw(SpriteBatch spriteBatch) {
spriteBatch.Draw( spriteBatch.Draw(