diff options
| author | Juan Linietsky | 2017-06-09 00:23:50 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2017-06-09 00:24:18 -0300 |
| commit | 612ab8fcdb94bf0cd9d7b4a3006b4e4f76c9a13b (patch) | |
| tree | 1e7b4fdb8154098319b0c44ee0289288610a77c3 /scene/resources/mesh.cpp | |
| parent | 01ed55987c4c044191e50ecc94c277b97962ffc7 (diff) | |
| download | godot-612ab8fcdb94bf0cd9d7b4a3006b4e4f76c9a13b.tar.gz godot-612ab8fcdb94bf0cd9d7b4a3006b4e4f76c9a13b.tar.zst godot-612ab8fcdb94bf0cd9d7b4a3006b4e4f76c9a13b.zip | |
Diffstat (limited to 'scene/resources/mesh.cpp')
| -rw-r--r-- | scene/resources/mesh.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/mesh.cpp b/scene/resources/mesh.cpp index e2ede4129..7f3b4d275 100644 --- a/scene/resources/mesh.cpp +++ b/scene/resources/mesh.cpp @@ -693,6 +693,7 @@ void ArrayMesh::add_surface(uint32_t p_format, PrimitiveType p_primitive, const Surface s; s.aabb = p_aabb; surfaces.push_back(s); + _recompute_aabb(); VisualServer::get_singleton()->mesh_add_surface(mesh, p_format, (VS::PrimitiveType)p_primitive, p_array, p_vertex_count, p_index_array, p_index_count, p_aabb, p_blend_shapes, p_bone_aabbs); } |
