소스 검색

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) {