Skip to content
Snippets Groups Projects
Commit 1cd915ab authored by BLOCH VALENTIN's avatar BLOCH VALENTIN
Browse files

Merge branch 'master' into 'master'

j'ai enlevé le bouton

See merge request chirz/cityescape!73
parents e68b6eec 84d161d6
Branches
No related merge requests found
......@@ -16,7 +16,7 @@ public class LoseNature : MonoBehaviour
{
nbFactory = GameObject.FindGameObjectsWithTag("factory").Length;
Debug.Log("il pert de la vie: " + nbFactory * damageByFactory);
//collision.GetComponent<PlayerNature>().LooseNature(damageByFactory * nbFactory);
collision.GetComponent<PlayerNature>().LooseNature(damageByFactory * nbFactory);
this.lostLife = true;
}
}
......
......@@ -96,7 +96,7 @@ public class PlayerMovement : MonoBehaviour
stage++;
}
}
void MoveCharacter()
{
change.Normalize();
......
......@@ -69,6 +69,9 @@ public class PlayerNature : MonoBehaviour
{
this.currentNature += bonus;
if (this.currentNature >= 100)
this.currentNature = 100;
this.natureBar.SetValue(this.currentNature);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment