diff options
author | clayjohn <claynjohn@gmail.com> | 2021-11-01 21:38:04 -0700 |
---|---|---|
committer | clayjohn <claynjohn@gmail.com> | 2021-11-01 21:38:04 -0700 |
commit | b7445f1ff8ff2e5d0ff7aee9f8535aff4e92100b (patch) | |
tree | c3f9898b5546abe21a680277dca159ce959d6497 | |
parent | 455e027725668742a52e08a173ea337a3c416b25 (diff) |
Validate fog volume properties
-rw-r--r-- | scene/3d/fog_volume.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/3d/fog_volume.cpp b/scene/3d/fog_volume.cpp index cc4fbbb41b..694defd7dc 100644 --- a/scene/3d/fog_volume.cpp +++ b/scene/3d/fog_volume.cpp @@ -50,6 +50,7 @@ void FogVolume::_validate_property(PropertyInfo &property) const { property.usage = PROPERTY_USAGE_NONE; return; } + VisualInstance3D::_validate_property(property); } void FogVolume::set_extents(const Vector3 &p_extents) { |