2019-04-17 07:02:41 +00:00
|
|
|
function main() {
|
2019-04-19 01:15:05 +00:00
|
|
|
console.log("%s initialized!", Self.Doodad.Title);
|
2019-04-17 07:02:41 +00:00
|
|
|
|
2019-05-07 05:57:32 +00:00
|
|
|
var pressed = false;
|
|
|
|
|
|
|
|
Events.OnCollide(function(e) {
|
|
|
|
if (pressed) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify they've touched the button.
|
|
|
|
if (e.Overlap.Y + e.Overlap.H < 24) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-04-19 01:15:05 +00:00
|
|
|
Self.ShowLayer(1);
|
2019-05-07 05:57:32 +00:00
|
|
|
pressed = true;
|
|
|
|
});
|
2019-04-17 07:02:41 +00:00
|
|
|
}
|