mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
Added setScaleMode and setBlendMode functions.
This commit is contained in:
parent
d4e4509e22
commit
c0254bbbf0
3 changed files with 15 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
var CHECKSUM = {
|
||||
build: '627a51a0-261d-11e7-8819-315fabb9bf54'
|
||||
build: 'c643e530-2635-11e7-8f31-f17aeae256a1'
|
||||
};
|
||||
module.exports = CHECKSUM;
|
|
@ -23,6 +23,13 @@ var BlendMode = {
|
|||
}
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
setBlendMode: function (value)
|
||||
{
|
||||
this.blendMode = value;
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
@ -21,6 +21,13 @@ var ScaleMode = {
|
|||
}
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
setScaleMode: function (value)
|
||||
{
|
||||
this.scaleMode = value;
|
||||
|
||||
return this;
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue