// Update is called once per frame void Update() { if (Input.GetMouseButtonDown(0)) { gameObjectSpawner.Create(spawnAmount); } if (Input.GetMouseButtonDown(1)) { entitySpawner.InstantiateMore(spawnAmount); } }