深度画布

This commit is contained in:
lzp
2026-03-20 13:23:00 +08:00
parent 34be403032
commit e00fe21e95
9 changed files with 378 additions and 5 deletions

View File

@@ -6,8 +6,10 @@
<template v-if="isReady">
<layer-panel />
<details-panel />
<depth-header-tools @export="exportCanvas" @workbench="(v) => emit('workbench', v)" />
<brush-control-panel :currentTool="toolManager.currentTool.value" />
<ai-selectbox-panel :currentTool="toolManager.currentTool.value" />
<depth-header-tools @export="exportCanvas" @workbench="(v) => emit('workbench', v)" />
<zoom
:zoom="canvasManager.currentZoom.value / 100"
is-home
@@ -30,6 +32,7 @@
import depthHeaderTools from './components/depth-header-tools.vue'
import zoom from '../components/zoom.vue'
import brushControlPanel from './components/brush-control-panel.vue'
import aiSelectboxPanel from './components/ai-selectbox-panel.vue'
// 管理器
import { StateManager } from './manager/StateManager'