From 4e91b6f69b39e9cbddad9fc4cd270529b022eba7 Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Thu, 23 May 2024 12:37:47 +0900 Subject: [PATCH] feat: change the default value of `UIParticle.scale` from `10` to `1` close #310 --- Runtime/UIParticle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/UIParticle.cs b/Runtime/UIParticle.cs index 0d35f65..398ae4d 100644 --- a/Runtime/UIParticle.cs +++ b/Runtime/UIParticle.cs @@ -60,7 +60,7 @@ namespace Coffee.UIExtensions [Tooltip("Particle effect scale")] [SerializeField] - private Vector3 m_Scale3D = new Vector3(10, 10, 10); + private Vector3 m_Scale3D = new Vector3(1, 1, 1); [Tooltip("Animatable material properties.\n" + "If you want to change the material properties of the ParticleSystem in Animation, enable it.")]