fix: NRE on enable

close #359
main
mob-sakai 2025-03-14 19:43:48 +09:00
parent 29eebf79fa
commit 63ec8f61e3
1 changed files with 2 additions and 0 deletions

View File

@ -187,6 +187,8 @@ namespace Coffee.UIParticleInternal
public static bool IsSubEmitterOf(this ParticleSystem self, ParticleSystem parent)
{
if (!self || !parent) return false;
var subEmitters = parent.subEmitters;
var count = subEmitters.subEmittersCount;
for (var i = 0; i < count; i++)