├── .gitignore ├── CHANGELOG.md ├── Documentation └── screenshot │ ├── export.jpg │ ├── part.jpg │ ├── scene.jpg │ └── select.jpg ├── Editor └── ExportScene.cs ├── LICENSE.md ├── README.md └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | 3 | *.meta 4 | 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 更新日志 2 | 3 | * (2019.10.29) 增加`Package Manager`包安装模式支持 4 | -------------------------------------------------------------------------------- /Documentation/screenshot/export.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monitor1394/ExportSceneToObj/HEAD/Documentation/screenshot/export.jpg -------------------------------------------------------------------------------- /Documentation/screenshot/part.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monitor1394/ExportSceneToObj/HEAD/Documentation/screenshot/part.jpg -------------------------------------------------------------------------------- /Documentation/screenshot/scene.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monitor1394/ExportSceneToObj/HEAD/Documentation/screenshot/scene.jpg -------------------------------------------------------------------------------- /Documentation/screenshot/select.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monitor1394/ExportSceneToObj/HEAD/Documentation/screenshot/select.jpg -------------------------------------------------------------------------------- /Editor/ExportScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monitor1394/ExportSceneToObj/HEAD/Editor/ExportScene.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monitor1394/ExportSceneToObj/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monitor1394/ExportSceneToObj/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monitor1394/ExportSceneToObj/HEAD/package.json --------------------------------------------------------------------------------