Browse Source

Fix Softbody always spawns from world center [gles2]
Fixes #35373

Eric Rybicki 5 years ago
parent
commit
3d4a2a09f6
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/gles2/rasterizer_storage_gles2.cpp

+ 1 - 0
drivers/gles2/rasterizer_storage_gles2.cpp

@@ -2692,6 +2692,7 @@ void RasterizerStorageGLES2::mesh_set_custom_aabb(RID p_mesh, const AABB &p_aabb
 	ERR_FAIL_COND(!mesh);
 
 	mesh->custom_aabb = p_aabb;
+	mesh->instance_change_notify(true, false);
 }
 
 AABB RasterizerStorageGLES2::mesh_get_custom_aabb(RID p_mesh) const {