30 changed files with 2335 additions and 2411 deletions
@ -1,7 +1,7 @@ |
|||
import * as THREE from 'three' |
|||
import BaseRenderer from '@/core/base/BaseRenderer.ts' |
|||
import Constract from '@/core/Constract.ts' |
|||
import Cl23dObject from "@/modules/cl2/Cl23dObject"; |
|||
import Cl23dObject from "./Cl23dObject"; |
|||
|
|||
/** |
|||
* ptr侧叉渲染器 |
|||
@ -1,7 +1,7 @@ |
|||
import * as THREE from 'three' |
|||
import BaseRenderer from '@/core/base/BaseRenderer.ts' |
|||
import Constract from '@/core/Constract.ts' |
|||
import Clx3dObject from "@/modules/clx/Clx3dObject"; |
|||
import Clx3dObject from "./Clx3dObject"; |
|||
|
|||
/** |
|||
* clx渲染器 |
|||
@ -1,12 +1,11 @@ |
|||
import { defineModule } from '@/core/manager/ModuleManager.ts' |
|||
import ClxRenderer from './ClxRenderer.ts' |
|||
import ClxInteraction from './ClxInteraction.ts' |
|||
import propertySetter from '@/modules/clx/ClxPropertySetter.ts' |
|||
import propertySetter from './ClxPropertySetter.ts' |
|||
|
|||
export const ITEM_TYPE_NAME = 'clx' |
|||
|
|||
export default defineModule(ITEM_TYPE_NAME, () => ({ |
|||
name: ITEM_TYPE_NAME, |
|||
renderer: new ClxRenderer(ITEM_TYPE_NAME), |
|||
interaction: new ClxInteraction(ITEM_TYPE_NAME), |
|||
setter: propertySetter |
|||
Loading…
Reference in new issue