www.jpct.net

jPCT - a 3d engine for Java => Support => Topic started by: AGP on August 25, 2013, 05:49:28 am

Title: Why do I keep getting two "Visibility lists disposed" Messages?
Post by: AGP on August 25, 2013, 05:49:28 am
I only get them when my program closes and I never got a "creating an additional visibility list" message. I'm using neither the ShadowHelper nor the ReflectionHelper. Is something wrong?
Title: Re: Why do I keep getting two "Visibility lists disposed" Messages?
Post by: EgonOlsen on August 25, 2013, 05:28:36 pm
That's normal. There is at least one visibility list by default without any logging.
Title: Re: Why do I keep getting two "Visibility lists disposed" Messages?
Post by: AGP on August 26, 2013, 08:05:23 pm
What about the WorldProcessors? I also get two of those:

New WorldProcessor created using 1 thread(s) and granularity of 1!
Creating new world processor buffer for thread main
New WorldProcessor created using 1 thread(s) and granularity of 1!
Creating new world processor buffer for thread main
Title: Re: Why do I keep getting two "Visibility lists disposed" Messages?
Post by: EgonOlsen on August 26, 2013, 08:36:33 pm
Then you are creating multiple worlds. Either directly or indirectly by using the SkyBox class.
Title: Re: Why do I keep getting two "Visibility lists disposed" Messages?
Post by: AGP on August 26, 2013, 08:53:59 pm
Oh, then it's just the SkyBox. Thanks.