- 영역 목록과 파라미터 편집 패널을 추가하여 왜곡 영역 관리를 개선했습니다. - 각 영역의 강도, 애니메이션 지속 시간, 이징 함수 등을 조절할 수 있습니다. - 새 영역 추가 및 기존 영역 삭제 기능을 제공합니다.
17 lines
473 B
TypeScript
17 lines
473 B
TypeScript
export { EditorCanvas } from './components/EditorCanvas';
|
|
export { AreaList } from './components/AreaList';
|
|
export { ParameterPanel } from './components/ParameterPanel';
|
|
|
|
export type {
|
|
EditorState,
|
|
EditMode,
|
|
EditorCanvasStyle,
|
|
CircleLevelStyle,
|
|
CenterPointStyle,
|
|
PointHandleStyle,
|
|
AreaOutlineStyle,
|
|
} from './types';
|
|
export { useDistortionEditor } from './hooks/useDistortionEditor';
|
|
export { DEFAULT_EDITOR_CANVAS_STYLE } from './constants';
|
|
import './editor.css';
|