@pixiv/three-vrm-core 2.1.0 → 2.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixiv/three-vrm-core",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "The implementation of core features of VRM, for @pixiv/three-vrm",
5
5
  "license": "MIT",
6
6
  "author": "pixiv",
@@ -50,16 +50,16 @@
50
50
  ]
51
51
  },
52
52
  "dependencies": {
53
- "@pixiv/types-vrm-0.0": "2.1.0",
54
- "@pixiv/types-vrmc-vrm-1.0": "2.1.0"
53
+ "@pixiv/types-vrm-0.0": "2.1.2",
54
+ "@pixiv/types-vrmc-vrm-1.0": "2.1.2"
55
55
  },
56
56
  "devDependencies": {
57
- "@types/three": "^0.160.0",
58
- "three": "^0.160.0"
57
+ "@types/three": "^0.164.0",
58
+ "three": "^0.164.1"
59
59
  },
60
60
  "peerDependencies": {
61
- "@types/three": "^0.160.0",
62
- "three": "^0.160.0"
61
+ "@types/three": "^0.164.0",
62
+ "three": "^0.164.1"
63
63
  },
64
- "gitHead": "0d96aeaa6e20baa8158658652179df20a162d8a3"
64
+ "gitHead": "2ea1a8f0d12a421c572514b86a84fef8ddfe752f"
65
65
  }
@@ -1,3 +1,4 @@
1
+ import * as THREE from 'three';
1
2
  import { VRMExpressionLoaderPlugin } from './expressions/VRMExpressionLoaderPlugin';
2
3
  import { VRMFirstPersonLoaderPlugin } from './firstPerson/VRMFirstPersonLoaderPlugin';
3
4
  import { VRMHumanoidLoaderPlugin } from './humanoid/VRMHumanoidLoaderPlugin';
@@ -1,3 +1,4 @@
1
+ import * as THREE from 'three';
1
2
  import { VRMExpressionManager } from './expressions/VRMExpressionManager';
2
3
  import { VRMFirstPerson } from './firstPerson/VRMFirstPerson';
3
4
  import { VRMHumanoid } from './humanoid/VRMHumanoid';
@@ -1,3 +1,4 @@
1
+ import * as THREE from 'three';
1
2
  import { VRMFirstPersonMeshAnnotationType } from './VRMFirstPersonMeshAnnotationType';
2
3
  export interface VRMFirstPersonMeshAnnotation {
3
4
  meshes: THREE.Mesh[];
@@ -1,3 +1,4 @@
1
+ import * as THREE from 'three';
1
2
  import { GLTF, GLTFLoaderPlugin, GLTFParser } from 'three/examples/jsm/loaders/GLTFLoader.js';
2
3
  import { VRMHumanoidLoaderPluginOptions } from './VRMHumanoidLoaderPluginOptions';
3
4
  /**
@@ -1,3 +1,4 @@
1
+ import * as THREE from 'three';
1
2
  export interface VRMHumanoidLoaderPluginOptions {
2
3
  /**
3
4
  * Specify an Object3D to add {@link VRMHumanoidHelper}.
@@ -1,3 +1,4 @@
1
+ import * as THREE from 'three';
1
2
  import { GLTF, GLTFLoaderPlugin, GLTFParser } from 'three/examples/jsm/loaders/GLTFLoader.js';
2
3
  import { VRMLookAtLoaderPluginOptions } from './VRMLookAtLoaderPluginOptions';
3
4
  /**
@@ -1,3 +1,4 @@
1
+ import * as THREE from 'three';
1
2
  export interface VRMLookAtLoaderPluginOptions {
2
3
  /**
3
4
  * Specify an Object3D to add {@link VRMLookAtHelper} s.
@@ -1,3 +1,4 @@
1
+ import * as THREE from 'three';
1
2
  import { GLTF } from 'three/examples/jsm/loaders/GLTFLoader.js';
2
3
  /**
3
4
  * Extract primitives ( `THREE.Mesh[]` ) of a node from a loaded GLTF.
@@ -1,3 +1,4 @@
1
+ import type * as THREE from 'three';
1
2
  import { VRMExpressionLoaderPlugin } from './expressions/VRMExpressionLoaderPlugin';
2
3
  import { VRMFirstPersonLoaderPlugin } from './firstPerson/VRMFirstPersonLoaderPlugin';
3
4
  import { VRMHumanoidLoaderPlugin } from './humanoid/VRMHumanoidLoaderPlugin';
@@ -1,3 +1,4 @@
1
+ import type * as THREE from 'three';
1
2
  import type { VRMExpressionManager } from './expressions/VRMExpressionManager';
2
3
  import type { VRMFirstPerson } from './firstPerson/VRMFirstPerson';
3
4
  import type { VRMHumanoid } from './humanoid/VRMHumanoid';
@@ -1,3 +1,4 @@
1
+ import type * as THREE from 'three';
1
2
  import type { VRMFirstPersonMeshAnnotationType } from './VRMFirstPersonMeshAnnotationType';
2
3
  export interface VRMFirstPersonMeshAnnotation {
3
4
  meshes: THREE.Mesh[];
@@ -1,3 +1,4 @@
1
+ import type * as THREE from 'three';
1
2
  import type { GLTF, GLTFLoaderPlugin, GLTFParser } from 'three/examples/jsm/loaders/GLTFLoader.js';
2
3
  import { VRMHumanoidLoaderPluginOptions } from './VRMHumanoidLoaderPluginOptions';
3
4
  /**
@@ -1,3 +1,4 @@
1
+ import type * as THREE from 'three';
1
2
  export interface VRMHumanoidLoaderPluginOptions {
2
3
  /**
3
4
  * Specify an Object3D to add {@link VRMHumanoidHelper}.
@@ -1,3 +1,4 @@
1
+ import type * as THREE from 'three';
1
2
  import type { GLTF, GLTFLoaderPlugin, GLTFParser } from 'three/examples/jsm/loaders/GLTFLoader.js';
2
3
  import type { VRMLookAtLoaderPluginOptions } from './VRMLookAtLoaderPluginOptions';
3
4
  /**
@@ -1,3 +1,4 @@
1
+ import type * as THREE from 'three';
1
2
  export interface VRMLookAtLoaderPluginOptions {
2
3
  /**
3
4
  * Specify an Object3D to add {@link VRMLookAtHelper} s.
@@ -1,3 +1,4 @@
1
+ import type * as THREE from 'three';
1
2
  import type { GLTF } from 'three/examples/jsm/loaders/GLTFLoader.js';
2
3
  /**
3
4
  * Extract primitives ( `THREE.Mesh[]` ) of a node from a loaded GLTF.