diff options
Diffstat (limited to 'scene/3d/fog_volume.h')
-rw-r--r-- | scene/3d/fog_volume.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/3d/fog_volume.h b/scene/3d/fog_volume.h index 556a92ad3f..d79836be0e 100644 --- a/scene/3d/fog_volume.h +++ b/scene/3d/fog_volume.h @@ -49,7 +49,7 @@ class FogVolume : public VisualInstance3D { protected: _FORCE_INLINE_ RID _get_volume() { return volume; } static void _bind_methods(); - virtual void _validate_property(PropertyInfo &property) const override; + void _validate_property(PropertyInfo &p_property) const; public: void set_extents(const Vector3 &p_extents); @@ -62,7 +62,7 @@ public: Ref<Material> get_material() const; virtual AABB get_aabb() const override; - TypedArray<String> get_configuration_warnings() const override; + PackedStringArray get_configuration_warnings() const override; FogVolume(); ~FogVolume(); |