feat(nds): adjust ABXY pressing offset

This commit is contained in:
2025-12-16 12:12:04 +01:00
parent a65ba42f06
commit b1040b5dd3

View File

@@ -160,10 +160,10 @@ onRender(({ delta }) => {
const PRESS_SPEED = 100;
const ACTION_BUTTONS = [
{ mesh: meshes.get(X_BUTTON), name: "X", offset: -0.0015 },
{ mesh: meshes.get(A_BUTTON), name: "A", offset: -0.0015 },
{ mesh: meshes.get(Y_BUTTON), name: "Y", offset: -0.0015 },
{ mesh: meshes.get(B_BUTTON), name: "B", offset: -0.0015 },
{ mesh: meshes.get(X_BUTTON), name: "X", offset: -0.0012 },
{ mesh: meshes.get(A_BUTTON), name: "A", offset: -0.0012 },
{ mesh: meshes.get(Y_BUTTON), name: "Y", offset: -0.0012 },
{ mesh: meshes.get(B_BUTTON), name: "B", offset: -0.0012 },
{ mesh: meshes.get(SELECT_BUTTON), name: "SELECT", offset: -0.0007 },
{ mesh: meshes.get(START_BUTTON), name: "START", offset: -0.0007 },
] as const;