瀏覽代碼

being able to delete objects with the delete key on scene explorer.

Pamela Wolf 5 年之前
父節點
當前提交
ccb45794f1
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      inspector/src/components/sceneExplorer/sceneExplorerComponent.tsx

+ 2 - 0
inspector/src/components/sceneExplorer/sceneExplorerComponent.tsx

@@ -215,6 +215,8 @@ export class SceneExplorerComponent extends React.Component<ISceneExplorerCompon
             }
             keyEvent.preventDefault();
             return;
+        } else if(keyEvent.keyCode === 46) { // delete
+            this.state.selectedEntity.dispose();
         }
 
         if (!search) {