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