Added setScaleMode and setBlendMode functions.

This commit is contained in:
Richard Davey 2017-04-21 03:12:25 +01:00
parent d4e4509e22
commit c0254bbbf0
3 changed files with 15 additions and 1 deletions

View file

@ -1,4 +1,4 @@
var CHECKSUM = { var CHECKSUM = {
build: '627a51a0-261d-11e7-8819-315fabb9bf54' build: 'c643e530-2635-11e7-8f31-f17aeae256a1'
}; };
module.exports = CHECKSUM; module.exports = CHECKSUM;

View file

@ -23,6 +23,13 @@ var BlendMode = {
} }
} }
},
setBlendMode: function (value)
{
this.blendMode = value;
return this;
} }
}; };

View file

@ -21,6 +21,13 @@ var ScaleMode = {
} }
} }
},
setScaleMode: function (value)
{
this.scaleMode = value;
return this;
} }
}; };