IsHarmful -> IsHazard
This commit is contained in:
parent
299ab41ec2
commit
fa4784fc49
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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(
|
||||||
|
Loading…
Reference in New Issue
Block a user