fix: if the UIParticle parents do not have Canvas, an exception is thrown in OnEnable

close #300
pull/310/head
mob-sakai 2024-04-04 15:59:12 +09:00
parent 990baacdf9
commit 67b384a1fe
1 changed files with 2 additions and 1 deletions

View File

@ -514,7 +514,8 @@ namespace Coffee.UIExtensions
var scale = _parent.scale3DForCalc.GetScaled(_parent.parentScale);
if (_parent.autoScalingMode == UIParticle.AutoScalingMode.UIParticle
&& _particleSystem.main.scalingMode == ParticleSystemScalingMode.Local)
&& _particleSystem.main.scalingMode == ParticleSystemScalingMode.Local
&& _parent.canvas)
{
scale = scale.GetScaled(_parent.canvas.transform.localScale);
}