silphius/public/assets/shit-shack/collision-start.js
2024-07-03 21:57:35 -05:00

20 lines
368 B
JavaScript

for (let i = 0; i < intersections.length; ++i) {
if (intersections[i][0].tags) {
if (intersections[i][0].tags.includes('door')) {
if (other.Player) {
ecs.switchEcs(
other,
entity.Ecs.path,
{
Position: {
x: 72,
y: 304,
},
},
);
}
}
}
}