-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for RasterizedPolygonsTileExcluder #64
Comments
For the record, support for |
Has this problem been solved now? |
Maps load until the system crashes, and it would be nice if there was a way to limit the load range. |
j9liu's comment above still represents the current state. The feature described in #248 should work pretty well for the use-case of limiting range. But if normal map loading is leading to a system crash (out of memory?), then something is almost certainly wrong either with your settings or your tileset. Perhaps you've set the Maximum Screen Space Error too low? Or your tileset has too many tiles at even a low level of detail? Or the Maximum Cache Bytes is set too high for the available system memory? Keep in mind that the value represents the size of the tiles coming over the network; they can actually be significantly larger once resident in memory. Set it to 0 and see if the crash goes away. |
This should have been closed by #407 , closing now. |
Currently tile exclusion is not exposed to C#. Support for RasterizedPolygonsOverlay/RasterizedPolygonsTileExcluder enables extra optimizations for developers creating more confined game levels or AR experiences. Going the extra mile, support for C# implementations of ITileExcluder and the ability to provide these to TilesetOptions::excluders would provide maximum flexibility for custom culling logic without having to leave the C# environment.
The text was updated successfully, but these errors were encountered: