Fix @export_custom hint format in gdscript_exports.rst

This commit is contained in:
starsJuly
2025-04-10 21:23:44 +08:00
committed by GitHub
parent e87d427253
commit ab6e73822a

View File

@@ -475,7 +475,7 @@ For example, this exposes the ``altitude`` property with no range limits but a
::
@export_custom(PROPERTY_HINT_NONE, "altitude:m") var altitude: Vector3
@export_custom(PROPERTY_HINT_NONE, "suffix:m") var altitude: Vector3
The above is normally not feasible with the standard ``@export_range`` syntax,
since it requires defining a range.