I’m making a system in my game with scalable projectiles, and I am creating the projectiles by instantiating them. How could I scale the projectiles while they’re being created and also let them each have individual sizes?
GameObject projectile = Instantiate(whatever);
projectile.transform.localScale = new Vector3 (someNumber, someNumber, someNumber);
1 Like