|
@@ -86,6 +86,16 @@ export class Gizemo extends Events {
|
|
|
|
|
|
childSubs = [] as any[];
|
|
|
|
|
|
+ addChildWorldNoChange(child: CompObject) {
|
|
|
+ const m = this.parent.worldTransform.clone();
|
|
|
+ m.invert();
|
|
|
+ const wm = child.worldTransform.clone();
|
|
|
+ wm.prepend(m);
|
|
|
+ child.setMatrix(wm);
|
|
|
+ this.parent.addChild(child);
|
|
|
+ child.updateTransform();
|
|
|
+ }
|
|
|
+
|
|
|
initGizmoEvent() {
|
|
|
|
|
|
this.state.onTransformChanged((t, ot)=>{
|
|
@@ -106,7 +116,7 @@ export class Gizemo extends Events {
|
|
|
this.aabb.addBounds(box);
|
|
|
|
|
|
objs.push(obj);
|
|
|
- this.parent.addChildWorldNoChange(obj);
|
|
|
+ this.addChildWorldNoChange(obj);
|
|
|
|
|
|
let first = true;
|
|
|
const s= obj.state.onTransformChanged(()=>{
|
|
@@ -114,17 +124,6 @@ export class Gizemo extends Events {
|
|
|
first = false;
|
|
|
})
|
|
|
this.childSubs.push(s);
|
|
|
-
|
|
|
- let first1 = true;
|
|
|
- const s2 = obj.comp.layout.onSizeChanged((size)=>{
|
|
|
- if (!first1) {
|
|
|
- obj.state.transform.w = designSizeToPx(size[0]);
|
|
|
- obj.state.transform.h = designSizeToPx(size[1]);
|
|
|
- this.updateSize();
|
|
|
- }
|
|
|
- first1 = false;
|
|
|
- })
|
|
|
- this.childSubs.push(s2);
|
|
|
});
|
|
|
|
|
|
this.selected = objs;
|
|
@@ -216,6 +215,7 @@ export class Gizemo extends Events {
|
|
|
let box = obj.calculateBounds();
|
|
|
bound.addBounds(box);
|
|
|
}
|
|
|
+
|
|
|
//构建当前对象的转换矩阵
|
|
|
let rect = new Rectangle();
|
|
|
bound.getRectangle(rect);
|
|
@@ -476,16 +476,27 @@ export class Gizemo extends Events {
|
|
|
this.aabb.addBounds(box);
|
|
|
});
|
|
|
this.aabb.getRectangle(this.rect);
|
|
|
- const x = this.rect.x, y = this.rect.y, sx = n == 1? selected[0].scale.x : 1, sy= n == 1? selected[0].scale.y : 1;
|
|
|
+
|
|
|
+ let x = this.rect.x, y = this.rect.y, sx = 1, sy= 1;
|
|
|
+ if ( n == 1) {
|
|
|
+ const s = selected[0].worldTransform.getScale();
|
|
|
+ sx = s.x;
|
|
|
+ sy = s.y;
|
|
|
+ }
|
|
|
const r = n == 1 ?selected[0].rotation : 0;
|
|
|
|
|
|
this.parent.setTransform(x, y, sx, sy, r, 0, 0, 0, 0);
|
|
|
this.parent.updateTransform();
|
|
|
-
|
|
|
- console.log("wwwwwwwwwwwww=>", this.height);
|
|
|
+
|
|
|
+ const w = n == 1 ? selected[0].width : this.rect.width;
|
|
|
|
|
|
- this.state.transform.w = this.rect.width;
|
|
|
- this.state.transform.h = this.rect.height;
|
|
|
+
|
|
|
+ const h = n == 1 ? selected[0].height : this.rect.height;
|
|
|
+ this.rect.width = w;
|
|
|
+ this.rect.height = h;
|
|
|
+
|
|
|
+ this.state.transform.w = w
|
|
|
+ this.state.transform.h = h;
|
|
|
this.state.transform.x = x;
|
|
|
this.state.transform.y = y;
|
|
|
this.state.transform.sx = sx;
|
|
@@ -493,7 +504,6 @@ export class Gizemo extends Events {
|
|
|
this.state.transform.r = r;
|
|
|
this.state.transform.px = 0;
|
|
|
this.state.transform.py = 0;
|
|
|
-
|
|
|
this.emit("change");
|
|
|
}
|
|
|
}
|