feat: change the default value of `UIParticle.scale` from `10` to `1`
close #310
parent
a4f635f312
commit
1b3c0f92dc
|
@ -60,7 +60,7 @@ namespace Coffee.UIExtensions
|
||||||
|
|
||||||
[Tooltip("Particle effect scale")]
|
[Tooltip("Particle effect scale")]
|
||||||
[SerializeField]
|
[SerializeField]
|
||||||
private Vector3 m_Scale3D = new Vector3(10, 10, 10);
|
private Vector3 m_Scale3D = new Vector3(1, 1, 1);
|
||||||
|
|
||||||
[Tooltip("Animatable material properties.\n" +
|
[Tooltip("Animatable material properties.\n" +
|
||||||
"If you want to change the material properties of the ParticleSystem in Animation, enable it.")]
|
"If you want to change the material properties of the ParticleSystem in Animation, enable it.")]
|
||||||
|
|
Loading…
Reference in New Issue