You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The transform callback is an optional callback that if set will be called at the end of the updateTransform method and sent two parameters:
32
+
* This Display Objects worldTransform matrix and its parents transform matrix. Both are PIXI.Matrix object types.
33
+
* The matrix are passed by reference and can be modified directly without needing to return them.
34
+
* This ability allows you to check any of the matrix values and perform actions such as clamping scale or limiting rotation, regardless of the parent transforms.
35
+
*
36
+
* @property transformCallback
37
+
* @type Function
38
+
*/
39
+
this.transformCallback=null;
40
+
41
+
/**
42
+
* The context under which the transformCallback is invoked.
43
+
*
44
+
* @property transformCallbackContext
45
+
* @type Object
46
+
*/
47
+
this.transformCallbackContext=null;
48
+
30
49
/**
31
50
* The pivot point of the displayObject that it rotates around
0 commit comments