doodads/on-off/state-block-blue.js

24 lines
399 B
JavaScript

// Blue State Block
function main() {
Self.SetHitbox(0, 0, 42, 42);
// Blue block is ON by default.
let state = true;
Message.Subscribe("broadcast:state-change", (newState) => {
state = !newState;
// Layer 0: ON
// Layer 1: OFF
Self.ShowLayer(state ? 0 : 1);
});
Events.OnCollide((e) => {
if (e.Actor.IsMobile() && e.InHitbox) {
if (state) {
return false;
}
}
});
}