numplanes + fakeplanes >= MAX_MAP_PLANES

numplanes + fakeplanes >= MAX_MAP_PLANES

Re: numplanes + fakeplanes >= MAX_MAP_PLANES Posted by Kampy on Mon Oct 12th 2009 at 5:47pm
Kampy
304 posts
Posted 2009-10-12 5:47pm
Kampy
member
304 posts 716 snarkmarks Registered: Dec 30th 2003 Occupation: student Location: Germany
I recently got this error while compiling:
numplanes + fakeplanes >= MAX_MAP_PLANES
what does this error mean? whats wrong?
what are numplanes and fakeplanes?
any tricks of how to solve this problem?

google gave me nothing but question marks
:scared:
Re: numplanes + fakeplanes >= MAX_MAP_PLANES Posted by Le Chief on Tue Oct 13th 2009 at 1:56am
Le Chief
2605 posts
Posted 2009-10-13 1:56am
Le Chief
member
2605 posts 937 snarkmarks Registered: Jul 28th 2006 Location: Sydney, Australia
It's pretty self explanatory, the number of planes in your map is greater than or equal to the maximum amount of planes you're allowed to have. This limit is defined in the compiling tools and is there to prevent unexpected results (engine bugs/glitches) associated with having a lot of planes in your map.

You'll have to simplify your geometry and make sure you're building efficiently so you're not creating excess polygons.
Aaron's Stuff
Re: numplanes + fakeplanes >= MAX_MAP_PLANES Posted by Kampy on Tue Oct 13th 2009 at 2:38pm
Kampy
304 posts
Posted 2009-10-13 2:38pm
Kampy
member
304 posts 716 snarkmarks Registered: Dec 30th 2003 Occupation: student Location: Germany
I figured that out, but whats a fakeplane? like a boing made of cartboxes?