MCPcopy Create free account
hub / github.com/esengine/esengine / handleBrowseProjectPath

Function handleBrowseProjectPath

packages/editor-app/src/App.tsx:891–899  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

889 };
890
891 const handleBrowseProjectPath = async (): Promise<string | null> => {
892 try {
893 const path = await TauriAPI.openProjectDialog();
894 return path || null;
895 } catch (error) {
896 console.error('Failed to browse path:', error);
897 return null;
898 }
899 };
900
901 const handleNewScene = async () => {
902 if (!sceneManager) {

Callers

nothing calls this directly

Calls 2

openProjectDialogMethod · 0.80
errorMethod · 0.45

Tested by

no test coverage detected