We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46f0354 commit a1662d5Copy full SHA for a1662d5
button.ts
@@ -212,6 +212,14 @@ namespace user_interface_base {
212
this._ariaId = value
213
}
214
215
+
216
+ get getLocalX() { return this.xfrm.localPos.x }
217
+ get getLocalY() { return this.xfrm.localPos.y }
218
219
+ set setLocalX(x: number) { this.xfrm.localPos.x = x }
220
+ set setLocalY(y: number) { this.xfrm.localPos.y = y }
221
222
223
reportAria(force = false) {
224
const msg: accessibility.TileAccessibilityMessage = {
225
type: "tile",
@@ -306,10 +314,6 @@ namespace user_interface_base {
306
314
307
315
308
316
309
- get localX() { return this.xfrm.localPos.x }
310
- get localY() { return this.xfrm.localPos.y }
311
-
312
313
317
public draw() {
318
super.draw()
319
0 commit comments