@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 +1 -1
- package/src/locale/LanguageProvider.ts +14 -14
- package/src/service/footer/action/geometry/index.ts +1 -1
- package/src/service/footer/action/material/index.ts +1 -1
- package/src/service/footer/action/texture/index.ts +1 -1
- package/src/service/sidebar/asset/action/AddAnimationAction.ts +1 -1
- package/src/service/sidebar/asset/action/AddLightAction.ts +1 -1
- package/src/service/sidebar/scene/action/AddAnimationAction.ts +1 -1
- package/src/service/sidebar/scene/action/AddLightAction.ts +1 -1
package/package.json
CHANGED
|
@@ -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.
|
|
139
|
-
'footer.action.
|
|
140
|
-
'footer.action.
|
|
141
|
-
'sidebar.asset.action.
|
|
142
|
-
'sidebar.asset.action.
|
|
143
|
-
'sidebar.scene.action.
|
|
144
|
-
'sidebar.scene.action.
|
|
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.
|
|
468
|
-
'footer.action.
|
|
469
|
-
'footer.action.
|
|
470
|
-
'sidebar.asset.action.
|
|
471
|
-
'sidebar.asset.action.
|
|
472
|
-
'sidebar.scene.action.
|
|
473
|
-
'sidebar.scene.action.
|
|
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': '状态',
|
|
@@ -36,7 +36,7 @@ class AddAnimationAction extends Action {
|
|
|
36
36
|
}
|
|
37
37
|
return new ClassAction()
|
|
38
38
|
}
|
|
39
|
-
label = language.get('sidebar.asset.action.
|
|
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.
|
|
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.
|
|
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.
|
|
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),
|