angular-three-plugin 4.0.0-next.44 → 4.0.0-next.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-three-plugin",
3
- "version": "4.0.0-next.44",
3
+ "version": "4.0.0-next.46",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -4,7 +4,7 @@ export interface GltfGeneratorSchema {
4
4
  output: string;
5
5
  className: string;
6
6
  selectorPrefix: string;
7
- draco?: boolean;
7
+ draco: boolean;
8
8
  bones: boolean;
9
9
  meta: boolean;
10
10
  shadows: boolean;
@@ -35,7 +35,7 @@ function normalizeOptions(tree, options, gltfJsx) {
35
35
  const injectGLTFOptions = options.transform && options.draco != null
36
36
  ? `{ useDraco: ${options.draco} }`
37
37
  : options.transform
38
- ? `{ useDraco: true }`
38
+ ? '{ useDraco: true }'
39
39
  : '';
40
40
  const selector = `${options.selectorPrefix}-${fileName}`;
41
41
  const gltfAnimationTypeName = className + 'AnimationClips';
@@ -36,7 +36,7 @@
36
36
  "draco": {
37
37
  "type": "boolean",
38
38
  "description": "Use DracoLoader",
39
- "alias": "d",
39
+ "alias": "D",
40
40
  "default": null
41
41
  },
42
42
  "bones": {