Refactor test data structure to use arrays for interaction steps

This commit is contained in:
2026-04-26 23:08:07 +02:00
parent e3586e16a0
commit 778038aa72

View File

@@ -554,11 +554,13 @@ describe("RuntimeInteractionSystem", () => {
y: 1.6,
z: 0
},
{
x: 0,
y: 0,
z: 1
},
[
{
x: 0,
y: 0,
z: 1
}
],
2,
runtimeScene
)
@@ -581,11 +583,13 @@ describe("RuntimeInteractionSystem", () => {
y: 1.6,
z: 0
},
{
x: 1,
y: 0,
z: 0
},
[
{
x: 1,
y: 0,
z: 0
}
],
2,
runtimeScene
)
@@ -617,11 +621,13 @@ describe("RuntimeInteractionSystem", () => {
y: 1.6,
z: -2
},
{
x: 0,
y: 0,
z: 1
},
[
{
x: 0,
y: 0,
z: 1
}
],
2,
runtimeScene
)
@@ -875,11 +881,13 @@ describe("RuntimeInteractionSystem", () => {
y: 1.6,
z: 0
},
{
x: 0,
y: 0,
z: 1
},
[
{
x: 0,
y: 0,
z: 1
}
],
2,
runtimeScene
);
@@ -1188,11 +1196,13 @@ describe("RuntimeInteractionSystem", () => {
y: 1.6,
z: 0
},
{
x: 0,
y: 0,
z: 1
},
[
{
x: 0,
y: 0,
z: 1
}
],
2,
runtimeScene
);
@@ -1253,11 +1263,13 @@ describe("RuntimeInteractionSystem", () => {
y: 1.6,
z: 0
},
{
x: 0,
y: 0,
z: 1
},
[
{
x: 0,
y: 0,
z: 1
}
],
2,
runtimeScene
)
@@ -1305,11 +1317,13 @@ describe("RuntimeInteractionSystem", () => {
y: 1.6,
z: 0
},
{
x: 0,
y: 0,
z: 1
},
[
{
x: 0,
y: 0,
z: 1
}
],
2,
runtimeScene
)