don't display acc data when AB added (#1483)
* don't display acc data when AB added * hide acc
This commit is contained in:
parent
bc024738be
commit
71e2ffb700
@ -720,27 +720,34 @@ path.sim-board {
|
|||||||
el.style.perspectiveOrigin = "50% 50% 50%";
|
el.style.perspectiveOrigin = "50% 50% 50%";
|
||||||
el.style.perspective = "30em";
|
el.style.perspective = "30em";
|
||||||
|
|
||||||
// update text
|
// don't display acc data when AB is on
|
||||||
if (acc.flags & AccelerometerFlag.X) {
|
if (state.buttonPairState.usesButtonAB) {
|
||||||
if (!this.accTextX) {
|
if (this.accTextX) this.accTextX.textContent = "";
|
||||||
this.accTextX = svg.child(this.g, "text", { x: 365, y: 260, class: "sim-text" }) as SVGTextElement;
|
if (this.accTextY) this.accTextY.textContent = "";
|
||||||
this.accTextX.textContent = "";
|
if (this.accTextZ) this.accTextZ.textContent = "";
|
||||||
|
} else {
|
||||||
|
// update text
|
||||||
|
if (acc.flags & AccelerometerFlag.X) {
|
||||||
|
if (!this.accTextX) {
|
||||||
|
this.accTextX = svg.child(this.g, "text", { x: 365, y: 260, class: "sim-text" }) as SVGTextElement;
|
||||||
|
this.accTextX.textContent = "";
|
||||||
|
}
|
||||||
|
this.accTextX.textContent = `ax:${x}`;
|
||||||
}
|
}
|
||||||
this.accTextX.textContent = `ax:${x}`;
|
if (acc.flags & AccelerometerFlag.Y) {
|
||||||
}
|
if (!this.accTextY) {
|
||||||
if (acc.flags & AccelerometerFlag.Y) {
|
this.accTextY = svg.child(this.g, "text", { x: 365, y: 285, class: "sim-text" }) as SVGTextElement;
|
||||||
if (!this.accTextY) {
|
this.accTextY.textContent = "";
|
||||||
this.accTextY = svg.child(this.g, "text", { x: 365, y: 285, class: "sim-text" }) as SVGTextElement;
|
}
|
||||||
this.accTextY.textContent = "";
|
this.accTextY.textContent = `ay:${-y}`;
|
||||||
}
|
}
|
||||||
this.accTextY.textContent = `ay:${-y}`;
|
if (acc.flags & AccelerometerFlag.Z) {
|
||||||
}
|
if (!this.accTextZ) {
|
||||||
if (acc.flags & AccelerometerFlag.Z) {
|
this.accTextZ = svg.child(this.g, "text", { x: 365, y: 310, class: "sim-text" }) as SVGTextElement;
|
||||||
if (!this.accTextZ) {
|
this.accTextZ.textContent = "";
|
||||||
this.accTextZ = svg.child(this.g, "text", { x: 365, y: 310, class: "sim-text" }) as SVGTextElement;
|
}
|
||||||
this.accTextZ.textContent = "";
|
this.accTextZ.textContent = `az:${z}`;
|
||||||
}
|
}
|
||||||
this.accTextZ.textContent = `az:${z}`;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user