@j-kyoda/vue-three-vrm 0.8.2 → 0.9.1
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/README.md +10 -7
- package/dist/index.css +1 -1
- package/dist/vue-three-vrm.es.js +208 -191
- package/dist/vue-three-vrm.umd.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,13 +89,15 @@ const model_loaded = (name, vrm_model) => {
|
|
|
89
89
|
|
|
90
90
|
### Props
|
|
91
91
|
|
|
92
|
-
| ID | Type | Default | Description
|
|
93
|
-
| :--------------- | :------- | :------ |
|
|
94
|
-
| animation | Boolean | false | Controls animation loop execution.
|
|
95
|
-
|
|
|
96
|
-
|
|
|
97
|
-
|
|
|
98
|
-
|
|
|
92
|
+
| ID | Type | Default | Description |
|
|
93
|
+
| :--------------- | :------- | :------ | :------------------------------------- |
|
|
94
|
+
| animation | Boolean | false | Controls animation loop execution. |
|
|
95
|
+
| clearAlpha | Number | 1.0 | Clear Alpha value. Ranges from 0 to 1. |
|
|
96
|
+
| clearColor | String | #7fbfff | Clear color value. |
|
|
97
|
+
| useOrbitControls | Boolean | false | Enables/disables `OrbitControls`. |
|
|
98
|
+
| useGridHelper | Boolean | false | Shows/hides the grid. |
|
|
99
|
+
| useAxesHelper | Boolean | false | Shows/hides the 3D axis arrows. |
|
|
100
|
+
| useDefaultLight | Boolean | false | Sets up default lighting. |
|
|
99
101
|
|
|
100
102
|
### Events (Emits)
|
|
101
103
|
|
|
@@ -112,6 +114,7 @@ const model_loaded = (name, vrm_model) => {
|
|
|
112
114
|
THREE,
|
|
113
115
|
VRMExpressionPresetName,
|
|
114
116
|
VRMHumanBoneName,
|
|
117
|
+
VRMUtils,
|
|
115
118
|
camera, // Instance of THREE.PerspectiveCamera
|
|
116
119
|
controls, // Instance of OrbitControls
|
|
117
120
|
renderer, // Instance of THREE.WebGLRenderer
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.box[data-v-
|
|
1
|
+
.box[data-v-60c3a6e5]{display:block;width:100%;height:100%}
|