AbstractAppState initialize method's usage

From what I can gather, the AbstractAppState initialize method does the same job as a constructor, but is not called the moment an instance is created. I know that the devs know better than me, and probably wouldn’t add a less useful duplicate piece of code, so where am I looking at the initialize method wrong? What does it actually do?



Thanks.

Read the javadoc, its executed on the render thread no matter where you initialize or attach your AppState.

1 Like

Oh, thanks Normen, I’ll remember to check the javadocs before asking next time. Thanks.