(sx: number, sy: number)
| 336 | } |
| 337 | |
| 338 | public setScale(sx: number, sy: number): void { |
| 339 | if (this._scaleX !== sx || this._scaleY !== sy) { |
| 340 | this._scaleX = sx; |
| 341 | this._scaleY = sy; |
| 342 | this.handleScaleChanged(); |
| 343 | this.applyPivot(); |
| 344 | this.updateGear(2); |
| 345 | } |
| 346 | } |
| 347 | |
| 348 | // Skew | 倾斜 |
| 349 |
no test coverage detected