浏览代码

Editor: More color widget instances using setHexValue.

Mr.doob 11 年之前
父节点
当前提交
0940321b4d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      editor/js/Sidebar.Object3D.js

+ 2 - 2
editor/js/Sidebar.Object3D.js

@@ -541,13 +541,13 @@ Sidebar.Object3D = function ( editor ) {
 
 			if ( object.color !== undefined ) {
 
-				objectColor.setValue( '#' + object.color.getHexString() );
+				objectColor.setHexValue( object.color.getHexString() );
 
 			}
 
 			if ( object.groundColor !== undefined ) {
 
-				objectGroundColor.setValue( '#' + object.groundColor.getHexString() );
+				objectGroundColor.setHexValue( object.groundColor.getHexString() );
 
 			}