@vyr/three-browser 0.0.25 → 0.0.27

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": "@vyr/three-browser",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "description": "",
5
5
  "main": "./src/index.ts",
6
6
  "author": "",
@@ -135,13 +135,13 @@ interface ZhCNLanguageProvider extends LanguageProvider {
135
135
  'option.Texture.colorSpace.SRGB': string
136
136
  'option.Texture.colorSpace.linearSRGB': string
137
137
 
138
- 'footer.action.addGeometry.label': string
139
- 'footer.action.addMaterial.label': string
140
- 'footer.action.addTexture.label': string
141
- 'sidebar.asset.action.addAnimation.label': string
142
- 'sidebar.asset.action.addLight.label': string
143
- 'sidebar.scene.action.addAnimation.label': string
144
- 'sidebar.scene.action.addLight.label': string
138
+ 'footer.action.AddGeometry.label': string
139
+ 'footer.action.AddMaterial.label': string
140
+ 'footer.action.AddTexture.label': string
141
+ 'sidebar.asset.action.AddAnimation.label': string
142
+ 'sidebar.asset.action.AddLight.label': string
143
+ 'sidebar.scene.action.AddAnimation.label': string
144
+ 'sidebar.scene.action.AddLight.label': string
145
145
 
146
146
  'inspector.AnimationAction.clip': string
147
147
  'inspector.AnimationAction.play': string
@@ -464,13 +464,13 @@ const zhCnLanguageProvider: ZhCNLanguageProvider = {
464
464
  'option.Texture.colorSpace.SRGB': 'sRGB色彩空间',
465
465
  'option.Texture.colorSpace.linearSRGB': '线性sRGB色彩空间',
466
466
 
467
- 'footer.action.addGeometry.label': '几何体',
468
- 'footer.action.addMaterial.label': '材质',
469
- 'footer.action.addTexture.label': '纹理',
470
- 'sidebar.asset.action.addAnimation.label': '新增动画',
471
- 'sidebar.asset.action.addLight.label': '新增光源',
472
- 'sidebar.scene.action.addAnimation.label': '新增动画',
473
- 'sidebar.scene.action.addLight.label': '新增光源',
467
+ 'footer.action.AddGeometry.label': '几何体',
468
+ 'footer.action.AddMaterial.label': '材质',
469
+ 'footer.action.AddTexture.label': '纹理',
470
+ 'sidebar.asset.action.AddAnimation.label': '新增动画',
471
+ 'sidebar.asset.action.AddLight.label': '新增光源',
472
+ 'sidebar.scene.action.AddAnimation.label': '新增动画',
473
+ 'sidebar.scene.action.AddLight.label': '新增光源',
474
474
 
475
475
  'inspector.AnimationAction.clip': '片段',
476
476
  'inspector.AnimationAction.play': '状态',
@@ -29,7 +29,7 @@ class AddGeometryAction extends Action {
29
29
  }
30
30
  return new ClassAction()
31
31
  }
32
- label = language.get('footer.action.addGeometry.label')
32
+ label = language.get('footer.action.AddGeometry.label')
33
33
  order = 5
34
34
 
35
35
  constructor() {
@@ -29,7 +29,7 @@ class AddMaterialAction extends Action {
29
29
  }
30
30
  return new ClassAction()
31
31
  }
32
- label = language.get('footer.action.addMaterial.label')
32
+ label = language.get('footer.action.AddMaterial.label')
33
33
  order = 5
34
34
 
35
35
  constructor() {
@@ -29,7 +29,7 @@ class AddTextureAction extends Action {
29
29
  }
30
30
  return new ClassAction()
31
31
  }
32
- label = language.get('footer.action.addTexture.label')
32
+ label = language.get('footer.action.AddTexture.label')
33
33
  order = 5
34
34
 
35
35
  constructor() {
@@ -36,7 +36,7 @@ class AddAnimationAction extends Action {
36
36
  }
37
37
  return new ClassAction()
38
38
  }
39
- label = language.get('sidebar.asset.action.addAnimation.label')
39
+ label = language.get('sidebar.asset.action.AddAnimation.label')
40
40
  order = 2
41
41
  children = [
42
42
  AddAnimationAction.generate(language.get('descriptor.type.AnimationUnit'), AnimationUnitDescriptor),
@@ -32,7 +32,7 @@ class AddLightAction extends Action {
32
32
  }
33
33
  return new ClassAction()
34
34
  }
35
- label = language.get('sidebar.asset.action.addLight.label')
35
+ label = language.get('sidebar.asset.action.AddLight.label')
36
36
  order = 2
37
37
  children = [
38
38
  AddLightAction.generate(language.get('descriptor.type.BoxGeometry'), AmbientLightDescriptor),
@@ -36,7 +36,7 @@ class AddAnimationAction extends Action {
36
36
  }
37
37
  return new ClassAction()
38
38
  }
39
- label = language.get('sidebar.scene.action.addAnimation.label')
39
+ label = language.get('sidebar.scene.action.AddAnimation.label')
40
40
  order = 2
41
41
  children = [
42
42
  AddAnimationAction.generate(language.get('descriptor.type.AnimationUnit'), AnimationUnitDescriptor),
@@ -33,7 +33,7 @@ class AddLightAction extends Action {
33
33
  }
34
34
  return new ClassAction()
35
35
  }
36
- label = language.get('sidebar.scene.action.addLight.label')
36
+ label = language.get('sidebar.scene.action.AddLight.label')
37
37
  order = 2
38
38
  children = [
39
39
  AddLightAction.generate(language.get('descriptor.type.AmbientLight'), AmbientLightDescriptor),