// setY.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Assets.Tangible.prototype;
/**
* Set this asset's global y position.
* @memberOf AdventureJS.Assets.Tangible
* @method AdventureJS.Assets.Tangible#setY
* @param {Float} value
* @returns {Float}
*/
p.setY = function Tangible_setY(value) {
return (this.position.y = value);
};
})();