插件安装
1、点击右侧插件包下载,得到: 'useViewportGizmo.zip' , 并放在 `icegl-three-vue-tres/pluginMaker/install/`
2、请使用命令终端,自行定位到您电脑的目录
cd /icegl-three-vue-tres/
3、输入命里,安装插件
yarn plugin.marker install useViewportGizmo
4、启动预览模式即可:
yarn pre.dev
插件介绍
快速集成ViewportGizmo到您的项目,调用简单,功能强大。
预览地址:
http://opensource.icegl.cn/#/plugins/useViewportGizmo/index
API详见:
https://fennec-hub.github.io/three-viewport-gizmo/api.html
主题配置:
https://fennec-hub.github.io/three-viewport-gizmo/custom.html
使用方法:
<template>
<TresCanvas>
<viewportGizmo v-bind="viewportConfig" />
</TresCanvas>
</template>
import { viewportGizmo } from 'PLS/useViewportGizmo'
const viewportConfig = {
size: 300,
lineWidth: 2,
type: 'cube'
}