unity-rlottie icon indicating copy to clipboard operation
unity-rlottie copied to clipboard

Fixed exception when played earlier than Awake/Start

Open azukizuki opened this issue 1 year ago • 0 comments

Hi, thanks for implement great library!

I found a one issue. about Play() method in AnimatedImage is throw NullReferenceException when called before awake and start method.

this problem is occured like this code.

_animatedImage.Play();
this.gameObject.SetActive(true);

I try to fixed it. I implement of Delay the call to the Play method until becomes active of gameObject. could you check is it?

azukizuki avatar Mar 04 '24 12:03 azukizuki