From 685daa11f5cb842e81f5ca6b89662ba792a08896 Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Tue, 21 Sep 2021 17:15:15 +0900 Subject: [PATCH] change: change default scale 10 to 1 --- Scripts/UIParticle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/UIParticle.cs b/Scripts/UIParticle.cs index 90a4c75..2d3d9fc 100755 --- a/Scripts/UIParticle.cs +++ b/Scripts/UIParticle.cs @@ -24,7 +24,7 @@ namespace Coffee.UIExtensions [HideInInspector] [SerializeField] internal bool m_IsTrail = false; [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. If you want to change the material properties of the ParticleSystem in Animation, enable it.")] [SerializeField] internal AnimatableProperty[] m_AnimatableProperties = new AnimatableProperty[0];