We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 98eb2e3 commit ed88c8eCopy full SHA for ed88c8e
1 file changed
v3/src/gameobjects/blitter/Blitter.js
@@ -26,12 +26,12 @@ var Bob = require('./Bob');
26
var Blitter = new Class({
27
28
Mixins: [
29
- Components.Transform,
30
- Components.Texture,
31
- Components.Size,
32
Components.Alpha,
33
Components.BlendMode,
34
Components.ScaleMode,
+ Components.Size,
+ Components.Texture,
+ Components.Transform,
35
Components.Visible,
36
BlitterRender
37
],
@@ -42,8 +42,8 @@ var Blitter = new Class({
42
{
43
GameObject.call(this, state);
44
45
- this.setPosition(x, y);
46
this.setTexture(texture, frame);
+ this.setPosition(x, y);
47
48
this.children = new Components.Children(this);
49
0 commit comments