summaryrefslogtreecommitdiffstats
path: root/scene/3d/occluder_instance_3d.h
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-06-19 16:47:37 +0200
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-06-19 16:47:37 +0200
commit0ae4298a3a2f9201e0a23f2503f6e36ad4103bbe (patch)
tree81095600ee05403d6b158a2c8a196f24e9cce458 /scene/3d/occluder_instance_3d.h
parentb75f0485ba15951b87f1d9a2d8dd0fcd55e178e4 (diff)
downloadredot-engine-0ae4298a3a2f9201e0a23f2503f6e36ad4103bbe.tar.gz
Fix invalid inheritance of `OccluderInstance3D`
Diffstat (limited to 'scene/3d/occluder_instance_3d.h')
-rw-r--r--scene/3d/occluder_instance_3d.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/occluder_instance_3d.h b/scene/3d/occluder_instance_3d.h
index f607877e8f..91445710b3 100644
--- a/scene/3d/occluder_instance_3d.h
+++ b/scene/3d/occluder_instance_3d.h
@@ -161,7 +161,7 @@ public:
};
class OccluderInstance3D : public VisualInstance3D {
- GDCLASS(OccluderInstance3D, Node3D);
+ GDCLASS(OccluderInstance3D, VisualInstance3D);
private:
Ref<Occluder3D> occluder;