From ae838587cbdba95311e5307933f5b27db2d9f2a4 Mon Sep 17 00:00:00 2001 From: mob-sakai <12690315+mob-sakai@users.noreply.github.com> Date: Thu, 27 Jun 2024 11:33:19 +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 41aa22e..11193a3 100644 --- a/Packages/src/Runtime/UIParticle.cs +++ b/Packages/src/Runtime/UIParticle.cs @@ -60,7 +60,7 @@ namespace Coffee.UIExtensions [Tooltip("Scale the rendering particles. When the `3D` toggle is enabled, 3D scale (x, y, z) is supported.")] [SerializeField] - private Vector3 m_Scale3D = new Vector3(10, 10, 10); + private Vector3 m_Scale3D = new Vector3(1, 1, 1); [Tooltip("If you want to update material properties (e.g. _MainTex_ST, _Color) in AnimationClip, " + "use this to mark as animatable.")]