From dc82e4074da4bea253f16aa66997307ee2e1b45a Mon Sep 17 00:00:00 2001 From: mob-sakai Date: Mon, 14 Aug 2023 16:11:05 +0900 Subject: [PATCH] fix: change AbsoluteMode default value to true --- Scripts/UIParticle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/UIParticle.cs b/Scripts/UIParticle.cs index 9697e28..b10c4a8 100644 --- a/Scripts/UIParticle.cs +++ b/Scripts/UIParticle.cs @@ -57,7 +57,7 @@ namespace Coffee.UIExtensions [SerializeField] [Tooltip("The particles will be emitted at the ParticleSystem position.\nMove the UIParticle/ParticleSystem to move the particle.")] - private bool m_AbsoluteMode = false; + private bool m_AbsoluteMode = true; private List m_Renderers = new List();