using UnityEngine; public class Scale2D : MonoBehaviour { public float speed = 0.001f; void FixedUpdate() { transform.localScale += new Vector3(speed, speed, 1); } }