@galacean/effects-specification 2.0.0-alpha.1 → 2.0.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/fallback.mjs CHANGED
@@ -2,7 +2,7 @@
2
2
  * Name: @galacean/effects-specification
3
3
  * Description: Galacean Effects JSON Specification
4
4
  * Author: Ant Group CO., Ltd.
5
- * Version: v2.0.0-alpha.1
5
+ * Version: v2.0.0-alpha.2
6
6
  */
7
7
 
8
8
  const randomUUID = typeof crypto !== 'undefined' && crypto.randomUUID && crypto.randomUUID.bind(crypto);
@@ -614,6 +614,12 @@ var ModelBoundingType;
614
614
  ModelBoundingType[ModelBoundingType["sphere"] = 3] = "sphere";
615
615
  })(ModelBoundingType || (ModelBoundingType = {}));
616
616
 
617
+ var CameraType;
618
+ (function (CameraType) {
619
+ CameraType["orthographic"] = "orthographic";
620
+ CameraType["perspective"] = "perspective";
621
+ })(CameraType || (CameraType = {}));
622
+
617
623
  // 材质类型
618
624
  var MaterialType;
619
625
  (function (MaterialType) {