From e9694b2a7bded889878e74e792b6d55a516b36f1 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 --- Packages/src/Runtime/UIParticle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/src/Runtime/UIParticle.cs b/Packages/src/Runtime/UIParticle.cs index 0d35f65..398ae4d 100644 --- a/Packages/src/Runtime/UIParticle.cs +++ b/Packages/src/Runtime/UIParticle.cs @@ -60,7 +60,7 @@ public enum PositionMode [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.")]