Brush Outside World Last edited 1 year ago2022-06-26 10:51:03 UTC

A Common compiling error

Example:
Entity 10, Brush 0: outside world(+/-4096): (-9000, -64, 216)-(9000,23,283)

There are two cases that create the 'outside world' error. The first is an invalid brush, almost always created by a vertix manipulation gone wrong. The coordinates listed in the error are very important in diagnosing the error. If any of the coordinates are -9000 or 9000, then the brush is indeed invalid, and most likely needs replacing completely.

The other case is when the brush actually is outside the world. The editor being just an interface to some objects stored in 3D math, doesn't really care if your brushes are overlapping or even completely outside the allowable world coordinates of +/- 4096. The fix here is pretty simple, just move the brush back inside the allowable region. For sanity sake, don't put brushes right up on the 4096 border. I would make the limit 4000 exactly, so there isn't as much room for an 'accident' while editing.

Comments

You must log in to post a comment. You can login or register a new account.