Merge pull request #88210 from TitanNano/jovan/missing_surface_data

Assign missing surface data fields in dummy render server
This commit is contained in:
Rémi Verschelde 2024-02-17 00:23:19 +01:00
commit f5ffe705ed
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -87,6 +87,12 @@ public:
s->index_count = p_surface.index_count;
s->aabb = p_surface.aabb;
s->skin_data = p_surface.skin_data;
s->lods = p_surface.lods;
s->bone_aabbs = p_surface.bone_aabbs;
s->mesh_to_skeleton_xform = p_surface.mesh_to_skeleton_xform;
s->blend_shape_data = p_surface.blend_shape_data;
s->uv_scale = p_surface.uv_scale;
s->material = p_surface.material;
}
virtual int mesh_get_blend_shape_count(RID p_mesh) const override { return 0; }