添加折叠面板

This commit is contained in:
yuding
2025-12-22 15:39:58 +08:00
parent 005535a26d
commit ed0414c75b
29 changed files with 2759 additions and 1416 deletions

View File

@@ -16,6 +16,7 @@ export const enUS: TranslationDictionary = {
walkPerson: 'Person',
walkBird: 'Bird Eye',
walkMenu: 'Menu',
tree: 'Tree',
},
dialog: {
testTitle: 'Test Dialog',
@@ -35,5 +36,14 @@ export const enUS: TranslationDictionary = {
component: 'Component',
system: 'System',
space: 'Space',
}
};
},
panel: {
property: {
title: 'Property Panel',
base: 'Basic Info',
material: 'Material',
advanced: 'Advanced'
}
}
};

View File

@@ -9,35 +9,44 @@ export interface TranslationDictionary {
openTestDialog: string;
openInfoDialog: string;
};
toolbar: {
home: string;
info: string;
location: string;
setting: string;
walk: string;
walkPerson: string;
walkBird: string;
walkMenu: string;
};
dialog: {
testTitle: string;
testContent: string;
};
menu: {
info: string;
home: string;
};
toolbar: {
home: string;
info: string;
location: string;
setting: string;
walk: string;
walkMenu: string;
walkPerson: string;
walkBird: string;
tree: string;
};
panel: {
property: {
title: string;
base: string;
material: string;
advanced: string;
}
};
dialog: {
testTitle: string;
testContent: string;
};
menu: {
info: string;
home: string;
};
tree: {
searchPlaceholder: string;
};
constructTree: {
title: string;
}
};
tab: {
component: string;
system: string;
space: string;
}
};
}
/**

View File

@@ -13,9 +13,10 @@ export const zhCN: TranslationDictionary = {
location: '定位',
setting: '设置',
walk: '漫游',
walkPerson: '人视',
walkBird: '鸟瞰',
walkMenu: '菜单',
walkMenu: '漫游菜单',
walkPerson: '第一人称',
walkBird: '第三人称',
tree: '模型树'
},
dialog: {
testTitle: '测试弹窗',
@@ -35,5 +36,13 @@ export const zhCN: TranslationDictionary = {
component: '构件',
system: '系统',
space: '空间',
},
panel: {
property: {
title: '属性面板',
base: '基本属性',
material: '材质信息',
advanced: '高级设置'
}
}
};