Add random point moving.

This commit is contained in:
2022-04-13 11:00:07 +07:00
parent 5371fe0f9c
commit b9b2f3ddf7
43 changed files with 3408 additions and 711 deletions

View File

@ -3,6 +3,8 @@
[CreateAssetMenu(fileName ="Game Settings", menuName = "Game/Settings", order = 51)]
public class Settings : ScriptableObject
{
public bool isTesting;
public float timeToWin;
public float timeOut;
@ -21,4 +23,8 @@ public class Settings : ScriptableObject
public int armourPickupAmount;
public int ammunitionPickupAmount;
public int pickupsAmount;
public int maxHealth;
public int maxArmour;
public int maxAmmo;
}