diff --git a/README.md b/README.md
index 67cb3188..71723bc0 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,7 @@ Supported Languages: 中文 / [繁體中文](README-tw.md) / [English](README-en
2. 新增导出场景到JSON文件功能。
3. 新增导出场景到Collada文件功能。
4. 新增导出场景到OBJ文件功能。
+5. 新增导出场景到PLY文件功能。
## v0.3.9更新【[更新日志](docs-dev/update/UpdateLog.md)】
diff --git a/ShadowEditor.Web/locales/zh-CN.json b/ShadowEditor.Web/locales/zh-CN.json
index ff317f5f..337115b1 100644
--- a/ShadowEditor.Web/locales/zh-CN.json
+++ b/ShadowEditor.Web/locales/zh-CN.json
@@ -954,5 +954,6 @@
"{{dist}}m": "{{dist}}米",
"To JSON File": "到JSON文件",
"To Collada File": "到Collada文件",
- "To OBJ File": "到OBJ文件"
+ "To OBJ File": "到OBJ文件",
+ "To PLY File": "到PLY文件"
}
\ No newline at end of file
diff --git a/ShadowEditor.Web/src/editor/menu/SceneMenu.jsx b/ShadowEditor.Web/src/editor/menu/SceneMenu.jsx
index ffe3ac68..1bf6bced 100644
--- a/ShadowEditor.Web/src/editor/menu/SceneMenu.jsx
+++ b/ShadowEditor.Web/src/editor/menu/SceneMenu.jsx
@@ -22,6 +22,7 @@ class SceneMenu extends React.Component {
this.handleExportSceneToCollada = this.handleExportSceneToCollada.bind(this);
this.handleExportSceneToGltf = this.handleExportSceneToGltf.bind(this);
this.handleExportSceneToOBJ = this.handleExportSceneToOBJ.bind(this);
+ this.handleExportSceneToPLY = this.handleExportSceneToPLY.bind(this);
this.handlePublishScene = this.handlePublishScene.bind(this);
}
@@ -58,6 +59,9 @@ class SceneMenu extends React.Component {
+
: null}
{!enableAuthority || isAdmin ?