Fix transform attachments affecting transform anchor positions
This commit is contained in:
@@ -38,9 +38,6 @@ export type TokenDragEventHandler = (
|
||||
tokenStateId: string,
|
||||
attachedTokenStateIds: string[]
|
||||
) => void;
|
||||
export type TokenTransformEventHandler = (
|
||||
event: Konva.KonvaEventObject<Event>
|
||||
) => void;
|
||||
|
||||
export type NoteCreateEventHander = (notes: Note[]) => void;
|
||||
export type NoteRemoveEventHander = (noteIds: string[]) => void;
|
||||
@@ -79,3 +76,8 @@ export type SelectionItemsCreateEventHandler = (
|
||||
tokenStates: TokenState[],
|
||||
notes: Note[]
|
||||
) => void;
|
||||
|
||||
export type CustomTransformEventHandler = (
|
||||
event: Konva.KonvaEventObject<Event>,
|
||||
attachments: Konva.Node[]
|
||||
) => void;
|
||||
|
||||
Reference in New Issue
Block a user