Преглед на файлове

Remove exprange info

PropertyHint.ExpRange was removed in godot 3.4.  This commit removes the outdated information from the wiki.
bbrainstormer преди 2 години
родител
ревизия
2af093e679
променени са 1 файла, в които са добавени 0 реда и са изтрити 9 реда
  1. 0 9
      tutorials/scripting/c_sharp/c_sharp_exports.rst

+ 0 - 9
tutorials/scripting/c_sharp/c_sharp_exports.rst

@@ -216,15 +216,6 @@ the slider.
     [Export(PropertyHint.Range, "0,100,1,or_greater,or_lesser")]
     public int Number { get; set; }
 
-Allow values 'y = exp(x)' where 'y' varies between 100 and 1000
-while snapping to steps of 20. The editor will present a
-slider for easily editing the value. This only works with floats.
-
-.. code-block:: csharp
-
-    [Export(PropertyHint.ExpRange, "100,1000,20")]
-    public float Number { get; set; }
-
 Floats with easing hint
 -----------------------