Better Coin Animation

This commit is contained in:
brausjonas
2023-02-05 22:07:41 +01:00
parent b0ddf261f4
commit 2abea8e99e
45 changed files with 1259 additions and 355 deletions
@@ -30,6 +30,18 @@ public class NoPlayablePlayer : Player
diceScript = dice.GetComponent<Dice>();
}
public void CoinFieldAction(int action)
{
if (action == 0)
{
AddCoins(3);
}
else
{
AddCoins(-3);
}
}
public void Wurfeln(int wurfelZahl)
{
wurfelt = true;