Increase chunk limit for known problematic RID_Owners.
The default limit is fine for most RID_Owners but 3d instances, CanvasItems, and physics bodies need a higher limit. There is a small memory cost to increasing the limit, so it should only be done where needed.
This commit is contained in:
@ -184,7 +184,7 @@ public:
|
||||
};
|
||||
|
||||
mutable RID_Owner<Canvas, true> canvas_owner;
|
||||
RID_Owner<Item, true> canvas_item_owner;
|
||||
RID_Owner<Item, true> canvas_item_owner{ 65536, 4194304 };
|
||||
RID_Owner<RendererCanvasRender::Light, true> canvas_light_owner;
|
||||
|
||||
template <typename T>
|
||||
|
||||
Reference in New Issue
Block a user