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
409 B
24 lines
409 B
3 years ago
|
// Blue State Block
|
||
|
function main() {
|
||
|
Self.SetHitbox(0, 0, 42, 42);
|
||
|
|
||
|
// Blue block is ON by default.
|
||
|
var state = true;
|
||
|
|
||
|
Message.Subscribe("broadcast:state-change", function(newState) {
|
||
|
state = !newState;
|
||
|
|
||
|
// Layer 0: ON
|
||
|
// Layer 1: OFF
|
||
|
Self.ShowLayer(state ? 0 : 1);
|
||
|
});
|
||
|
|
||
|
Events.OnCollide(function(e) {
|
||
|
if (e.Actor.IsMobile() && e.InHitbox) {
|
||
|
if (state) {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|