Built-in doodads and levels of Sketchy Maze.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
404 B

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