Merge pull request #41717 from Wavesonics/fix-headles-server-lightmap-error

dummy_rasterizer now returns correct instance type: VS::INSTANCE_LIGHTMAP_CAPTURE
This commit is contained in:
Rémi Verschelde 2020-09-02 21:49:31 +02:00 committed by GitHub
commit 67b1bf33fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -719,6 +719,8 @@ public:
VS::InstanceType get_base_type(RID p_rid) const {
if (mesh_owner.owns(p_rid)) {
return VS::INSTANCE_MESH;
} else if (lightmap_capture_data_owner.owns(p_rid)) {
return VS::INSTANCE_LIGHTMAP_CAPTURE;
}
return VS::INSTANCE_NONE;