Merge pull request #105470 from clayjohn/RID-owner-limit

Increase chunk limit for known problematic RID_Owners.
This commit is contained in:
Thaddeus Crews 2025-04-18 12:21:30 -05:00
commit 2d3bdcac35
No known key found for this signature in database
GPG key ID: 8C6E5FEB5FC03CCC
5 changed files with 5 additions and 5 deletions

View file

@ -58,7 +58,7 @@ class GodotPhysicsServer3D : public PhysicsServer3D {
mutable RID_PtrOwner<GodotShape3D, true> shape_owner;
mutable RID_PtrOwner<GodotSpace3D, true> space_owner;
mutable RID_PtrOwner<GodotArea3D, true> area_owner;
mutable RID_PtrOwner<GodotBody3D, true> body_owner;
mutable RID_PtrOwner<GodotBody3D, true> body_owner{ 65536, 1048576 };
mutable RID_PtrOwner<GodotSoftBody3D, true> soft_body_owner;
mutable RID_PtrOwner<GodotJoint3D, true> joint_owner;