From c0d75b21819e75c1622cb4da426cd5bb89d03364 Mon Sep 17 00:00:00 2001 From: Li Teng <930372551@qq.com> Date: Wed, 28 Jun 2017 07:08:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BF=BB=E8=AF=91=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ThreeEditor/ThreeEditor/editor/js/Sidebar.Material.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ThreeEditor/ThreeEditor/editor/js/Sidebar.Material.js b/ThreeEditor/ThreeEditor/editor/js/Sidebar.Material.js index f95cfce7..47d97d3d 100644 --- a/ThreeEditor/ThreeEditor/editor/js/Sidebar.Material.js +++ b/ThreeEditor/ThreeEditor/editor/js/Sidebar.Material.js @@ -258,7 +258,7 @@ Sidebar.Material = function (editor) { var materialAlphaMapEnabled = new UI.Checkbox(false).onChange(update); var materialAlphaMap = new UI.Texture().onChange(update); - materialAlphaMapRow.add(new UI.Text('α纹理').setWidth('90px')); + materialAlphaMapRow.add(new UI.Text('透明纹理').setWidth('90px')); materialAlphaMapRow.add(materialAlphaMapEnabled); materialAlphaMapRow.add(materialAlphaMap); @@ -373,7 +373,7 @@ Sidebar.Material = function (editor) { var materialAOMap = new UI.Texture().onChange(update); var materialAOScale = new UI.Number(1).setRange(0, 1).setWidth('30px').onChange(update); - materialAOMapRow.add(new UI.Text('AO纹理').setWidth('90px')); + materialAOMapRow.add(new UI.Text('遮挡纹理').setWidth('90px')); materialAOMapRow.add(materialAOMapEnabled); materialAOMapRow.add(materialAOMap); materialAOMapRow.add(materialAOScale);