修改子元素变换无效bug
修改不能只打开旋转变换bug
This commit is contained in:
parent
fe0ba85437
commit
d7014486de
@ -66,12 +66,12 @@ export class IscsFanInteraction extends GraphicInteractionPlugin<IscsFan> {
|
|||||||
bind(g: IscsFan): void {
|
bind(g: IscsFan): void {
|
||||||
g.eventMode = 'static';
|
g.eventMode = 'static';
|
||||||
g.cursor = 'pointer';
|
g.cursor = 'pointer';
|
||||||
g.scalable = true;
|
// g.scalable = true;
|
||||||
g.rotatable = true;
|
g.rotatable = true;
|
||||||
}
|
}
|
||||||
unbind(g: IscsFan): void {
|
unbind(g: IscsFan): void {
|
||||||
g.eventMode = 'none';
|
g.eventMode = 'none';
|
||||||
g.scalable = false;
|
// g.scalable = false;
|
||||||
g.rotatable = false;
|
g.rotatable = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -187,7 +187,7 @@ export class GraphicTransformPlugin extends InteractionPluginBase {
|
|||||||
this.app.on('graphicselectedchange', this.onGraphicSelectedChange, this);
|
this.app.on('graphicselectedchange', this.onGraphicSelectedChange, this);
|
||||||
this.app.on(
|
this.app.on(
|
||||||
'graphicchildselectedchange',
|
'graphicchildselectedchange',
|
||||||
this.onGraphicChildSelectedChange,
|
this.onGraphicSelectedChange,
|
||||||
this
|
this
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -198,7 +198,7 @@ export class GraphicTransformPlugin extends InteractionPluginBase {
|
|||||||
this.app.off('graphicselectedchange', this.onGraphicSelectedChange, this);
|
this.app.off('graphicselectedchange', this.onGraphicSelectedChange, this);
|
||||||
this.app.off(
|
this.app.off(
|
||||||
'graphicchildselectedchange',
|
'graphicchildselectedchange',
|
||||||
this.onGraphicChildSelectedChange,
|
this.onGraphicSelectedChange,
|
||||||
this
|
this
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -335,7 +335,7 @@ export class GraphicTransformPlugin extends InteractionPluginBase {
|
|||||||
br.visible = false;
|
br.visible = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (g.scalable) {
|
if (g.scalable || g.rotatable) {
|
||||||
// 缩放点
|
// 缩放点
|
||||||
let sp = g.getAssistantAppend<TransformPoints>(TransformPoints.Name);
|
let sp = g.getAssistantAppend<TransformPoints>(TransformPoints.Name);
|
||||||
if (!sp) {
|
if (!sp) {
|
||||||
@ -350,19 +350,19 @@ export class GraphicTransformPlugin extends InteractionPluginBase {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onGraphicChildSelectedChange(child: DisplayObject, selected: boolean) {
|
// onGraphicChildSelectedChange(child: DisplayObject, selected: boolean) {
|
||||||
let br = child.getAssistantAppend<BoundsGraphic>(BoundsGraphic.Name);
|
// let br = child.getAssistantAppend<BoundsGraphic>(BoundsGraphic.Name);
|
||||||
if (!br) {
|
// if (!br) {
|
||||||
// 绘制辅助包围框
|
// // 绘制辅助包围框
|
||||||
br = new BoundsGraphic(child);
|
// br = new BoundsGraphic(child);
|
||||||
}
|
// }
|
||||||
if (selected) {
|
// if (selected) {
|
||||||
br.redraw();
|
// br.redraw();
|
||||||
br.visible = true;
|
// br.visible = true;
|
||||||
} else {
|
// } else {
|
||||||
br.visible = false;
|
// br.visible = false;
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user