Fix missing instance type in dummy renderer

(cherry picked from commit 406d7e6d37)
This commit is contained in:
A Thousand Ships 2024-02-08 12:15:26 +01:00 committed by Rémi Verschelde
parent a7099ce880
commit 0f6403f719
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 2 additions and 0 deletions

View File

@ -53,6 +53,8 @@ public:
virtual RS::InstanceType get_base_type(RID p_rid) const override {
if (RendererDummy::MeshStorage::get_singleton()->owns_mesh(p_rid)) {
return RS::INSTANCE_MESH;
} else if (RendererDummy::MeshStorage::get_singleton()->owns_multimesh(p_rid)) {
return RS::INSTANCE_MULTIMESH;
}
return RS::INSTANCE_NONE;
}