소스 검색

c_sharp_collections.rst: copy variant page's Packed{TYPE}Array order

(cherry picked from commit d203e8b4e55688b7e40296db5a8a57be43ea6b88)
31 1 년 전
부모
커밋
b1747cb7e5
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tutorials/scripting/c_sharp/c_sharp_collections.rst

+ 2 - 2
tutorials/scripting/c_sharp/c_sharp_collections.rst

@@ -77,15 +77,15 @@ In C#, packed arrays are replaced by ``System.Array``:
 ======================  ==============================================================
 GDScript                C#
 ======================  ==============================================================
+``PackedByteArray``     ``byte[]``
 ``PackedInt32Array``    ``int[]``
 ``PackedInt64Array``    ``long[]``
-``PackedByteArray``     ``byte[]``
 ``PackedFloat32Array``  ``float[]``
 ``PackedFloat64Array``  ``double[]``
 ``PackedStringArray``   ``string[]``
-``PackedColorArray``    ``Color[]``
 ``PackedVector2Array``  ``Vector2[]``
 ``PackedVector3Array``  ``Vector3[]``
+``PackedColorArray``    ``Color[]``
 ======================  ==============================================================
 
 Other C# arrays are not supported by the Godot C# API since a packed array equivalent