|
@@ -146,18 +146,22 @@ export class Gizemo extends Events {
|
|
|
this.parent.pivot.y = t.py;
|
|
|
this.parent._boundsID++;
|
|
|
|
|
|
+
|
|
|
if (this.selected.length == 1 && this.state.mouse ) {//调整宽度
|
|
|
|
|
|
- if (this.selected[0].comp.compKey != "Text") {//文本只有左右 可以进行宽度设置
|
|
|
+ const compkey = this.selected[0].comp.compKey;
|
|
|
+ if (compkey != "Group") {
|
|
|
+ if ( compkey!= "Text") {//文本只有左右 可以进行宽度设置
|
|
|
|
|
|
- const sx = t.sx * t.w / this.selected[0].width;
|
|
|
- const sy = t.sy * t.h / this.selected[0].height;
|
|
|
- this.applyChildWidth({scaleX: sx, scaleY: sy});
|
|
|
- }
|
|
|
- else {
|
|
|
- if ( EdgeNames.indexOf(this.state.mouse) != -1 ) {
|
|
|
const sx = t.sx * t.w / this.selected[0].width;
|
|
|
- this.applyChildWidth({scaleX: sx, scaleY: 1});
|
|
|
+ const sy = t.sy * t.h / this.selected[0].height;
|
|
|
+ this.applyChildWidth({scaleX: sx, scaleY: sy});
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ if ( EdgeNames.indexOf(this.state.mouse) != -1 ) {
|
|
|
+ const sx = t.sx * t.w / this.selected[0].width;
|
|
|
+ this.applyChildWidth({scaleX: sx, scaleY: 1});
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -257,12 +261,23 @@ export class Gizemo extends Events {
|
|
|
}
|
|
|
|
|
|
//index
|
|
|
- // 0 ---- 1
|
|
|
- // | 4 |
|
|
|
- // 3 -----2
|
|
|
+ // 0 --5-- 1
|
|
|
+ // | |
|
|
|
+ // 8 4 6
|
|
|
+ // | |
|
|
|
+ // 3 --7---2
|
|
|
+
|
|
|
setPivot(index:number) {
|
|
|
let rect = this.rect;
|
|
|
- let pivots = [{ x: 0, y: 0 }, { x: rect.width, y: 0 }, { x: rect.width, y: rect.height }, { x: 0, y: rect.height }, { x: rect.width / 2, y: rect.height / 2 }];
|
|
|
+ let pivots = [ { x: 0, y: 0 }, { x: rect.width, y: 0 },
|
|
|
+ { x: rect.width, y: rect.height },
|
|
|
+ { x: 0, y: rect.height },
|
|
|
+ { x: rect.width / 2.0, y: rect.height / 2.0 },
|
|
|
+ { x: rect.width / 2.0, y: 0 },
|
|
|
+ { x: rect.width , y: rect.height / 2.0 },
|
|
|
+ { x: rect.width / 2.0 , y: rect.height},
|
|
|
+ { x: 0, y: rect.height / 2.0},
|
|
|
+ ];
|
|
|
let targetPivot = pivots[index];
|
|
|
let point = { x: targetPivot.x, y: targetPivot.y } as any;
|
|
|
this.parent.worldTransform.apply(point, point);
|
|
@@ -296,9 +311,17 @@ export class Gizemo extends Events {
|
|
|
|
|
|
getPivotXY(index:number) {
|
|
|
let rect = this.rect;
|
|
|
- let pivots = [{ x: 0, y: 0 }, { x: rect.width, y: 0 }, { x: rect.width, y: rect.height }, { x: 0, y: rect.height }, { x: rect.width / 2, y: rect.height / 2 }];
|
|
|
- let targetPivot = pivots[index];
|
|
|
+ let pivots = [ { x: 0, y: 0 }, { x: rect.width, y: 0 },
|
|
|
+ { x: rect.width, y: rect.height },
|
|
|
+ { x: 0, y: rect.height },
|
|
|
+ { x: rect.width / 2.0, y: rect.height / 2.0 },
|
|
|
+ { x: rect.width / 2.0, y: 0 },
|
|
|
+ { x: rect.width , y: rect.height / 2.0 },
|
|
|
+ { x: rect.width / 2.0 , y: rect.height},
|
|
|
+ { x: 0, y: rect.height / 2.0},
|
|
|
+ ];
|
|
|
|
|
|
+ let targetPivot = pivots[index];
|
|
|
let point = { x: targetPivot.x, y: targetPivot.y } as any;
|
|
|
this.parent.worldTransform.apply(point, point);
|
|
|
|
|
@@ -341,8 +364,6 @@ export class Gizemo extends Events {
|
|
|
|
|
|
|
|
|
scaleX(x:number, submit= false) {
|
|
|
- console.log("scalex=>", x);
|
|
|
-
|
|
|
const t = {...this.state.transform};
|
|
|
t.sx = x;
|
|
|
this.state.setTransform(t);
|