Vox 組件開發編輯
veloren 的組件為 vox 檔,可使用 MagicaVoxel 或是 Goxel 編輯體素遊戲組件 vox 檔。
- MagicaVoxel @ ephtracy (Win/Mac)
- Goxel: Free and Open Source 3D Voxel Editor (Win/Mac/Linux/Android)
MagicVoxel
道場示意模型 40x40x40
MV vox 組件庫
CC BY 姓名標示 (Creative Commons Attribution)
商業
Goxel
輸入 vox 檔編輯
3D Model Viewer
匯出 glTF (GL Transmission Format) 不過不能匯入,匯出後 glTF 檔案可由 3D Viewer App 開啟。
Drag-and-drop preview for glTF 2.0 models in WebGL using three.js.
<body>
<div id="app">
<model-gltf
src="static/models/gltf/Duck/glTF/Duck.gltf"
@on-mousemove="onMouseMove">
</model-gltf>
</div>
<script src="vue.js"></script>
<script src="vue-3d-model.min.js"></script>
<script>
new Vue({
el: '#app'
})
</script>
</body>