Added SetAlpha function for method chaining.

This commit is contained in:
Richard Davey 2017-05-17 04:37:42 +01:00
parent b77c34562a
commit 40db9d3dab

View file

@ -30,6 +30,13 @@ var Alpha = {
}
}
},
setAlpha: function (value)
{
this.alpha = value;
return this;
}
};