Skip to content

Commit 9955eef

Browse files
committed
feat: change the default value of UIParticle.scale from 10 to 1
1 parent c09bfb8 commit 9955eef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Packages/src/Runtime/UIParticle.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public enum PositionMode
6262

6363
[Tooltip("Scale the rendering particles. When the `3D` toggle is enabled, 3D scale (x, y, z) is supported.")]
6464
[SerializeField]
65-
private Vector3 m_Scale3D = new Vector3(10, 10, 10);
65+
private Vector3 m_Scale3D = new Vector3(1, 1, 1);
6666

6767
[Tooltip("If you want to update material properties (e.g. _MainTex_ST, _Color) in AnimationClip, " +
6868
"use this to mark as animatable.")]

0 commit comments

Comments
 (0)