Add anchorPosition as a field for FloatingUIPanel.

This commit is contained in:
Zander Otavka 2015-08-04 17:10:56 -07:00
parent cb5b5fcfc4
commit 90bfce25e5

View file

@ -110,7 +110,7 @@
} }
// //
// Get or create an overlay object from the id. // Get or create a panel object from the id.
// //
// @param knownOverlaysOnly (Optional: Boolean) // @param knownOverlaysOnly (Optional: Boolean)
// If true, a new object will not be created. // If true, a new object will not be created.
@ -391,7 +391,7 @@
this.message = message; this.message = message;
}; };
var FIELDS = ["offsetPosition", "offsetRotation", "facingRotation"]; var FIELDS = ["anchorPosition", "offsetRotation", "offsetPosition", "facingRotation"];
FIELDS.forEach(function(prop) { FIELDS.forEach(function(prop) {
Object.defineProperty(that.prototype, prop, { Object.defineProperty(that.prototype, prop, {
get: function() { get: function() {