diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-11-03 23:06:17 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-11-03 23:06:17 +0100 |
commit | c012fbc8b235b86ed70c501834825d91292f8811 (patch) | |
tree | fd79549cd57fd58007c0f6a2e0a3d589e7a7f9d8 /scene/3d/navigation_obstacle_3d.cpp | |
parent | 536757b80b092a0cc3b2819d502e0129196d6a19 (diff) |
Rename `PROPERTY_USAGE_NOEDITOR` to `PROPERTY_USAGE_NO_EDITOR`
This is consistent with other constants that include `NO`,
such as `PROPERTY_HINT_COLOR_NO_ALPHA`.
Diffstat (limited to 'scene/3d/navigation_obstacle_3d.cpp')
-rw-r--r-- | scene/3d/navigation_obstacle_3d.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/3d/navigation_obstacle_3d.cpp b/scene/3d/navigation_obstacle_3d.cpp index ef15a6319e..f9fff802e0 100644 --- a/scene/3d/navigation_obstacle_3d.cpp +++ b/scene/3d/navigation_obstacle_3d.cpp @@ -47,7 +47,7 @@ void NavigationObstacle3D::_bind_methods() { void NavigationObstacle3D::_validate_property(PropertyInfo &p_property) const { if (p_property.name == "radius") { if (estimate_radius) { - p_property.usage = PROPERTY_USAGE_NOEDITOR; + p_property.usage = PROPERTY_USAGE_NO_EDITOR; } } } |