feat: change the default value of UIParticle.scale from 10 to 1

close #310
This commit is contained in:
mob-sakai
2024-05-23 12:37:47 +09:00
parent 1bf669e09f
commit 4e91b6f69b

View File

@@ -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.")]