浏览代码

Editor: Auto select material in material browser.

Mr.doob 6 年之前
父节点
当前提交
b8903a43a8
共有 1 个文件被更改,包括 13 次插入0 次删除
  1. 13 0
      editor/js/Sidebar.Project.js

+ 13 - 0
editor/js/Sidebar.Project.js

@@ -222,6 +222,19 @@ Sidebar.Project = function ( editor ) {
 
 	container.add( materials );
 
+	// events
+
+	signals.objectSelected.add( function ( object ) {
+
+		if ( object !== null ) {
+
+			var index = Object.values( editor.materials ).indexOf( object.material );
+			listbox.selectIndex( index );
+
+		}
+
+	} );
+
 	return container;
 
 };