Fix missing instance type in dummy renderer

This commit is contained in:
A Thousand Ships 2024-02-08 12:15:26 +01:00
parent a0106607e8
commit 406d7e6d37
No known key found for this signature in database
GPG key ID: 2033189A662F8BD7

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;
}