Modified scatter to get access to the Resize event.

This commit is contained in:
2019-11-28 13:36:00 +01:00
parent 5305561619
commit f3fed535d8
6 changed files with 66 additions and 44 deletions
+3
View File
@@ -276,6 +276,7 @@ export class DisplayObjectScatter extends AbstractScatter {
rotation = null,
overdoScaling = 1.5,
onTransform = null,
onResize,
onThrowFinished = null
} = {}
) {
@@ -301,6 +302,7 @@ export class DisplayObjectScatter extends AbstractScatter {
rotation,
onTransform
})
this.onResize = onResize
this.displayObject = displayObject
this.displayObject.scatter = this
this.renderer = renderer
@@ -313,6 +315,7 @@ export class DisplayObjectScatter extends AbstractScatter {
if (y != null) this.y = y
}
getWorldScatter() {
return this
}