소스 검색

Merge pull request #86324 from aaronfranke/really-packed

Add PackedRealArray as an alias for Vector<real_t>
Yuri Sizov 1 년 전
부모
커밋
d2da961f33
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      core/variant/variant.h

+ 1 - 0
core/variant/variant.h

@@ -70,6 +70,7 @@ typedef Vector<int32_t> PackedInt32Array;
 typedef Vector<int64_t> PackedInt64Array;
 typedef Vector<float> PackedFloat32Array;
 typedef Vector<double> PackedFloat64Array;
+typedef Vector<real_t> PackedRealArray;
 typedef Vector<String> PackedStringArray;
 typedef Vector<Vector2> PackedVector2Array;
 typedef Vector<Vector3> PackedVector3Array;