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.
 
 
 

62 lines
1.5 KiB

// Crumbly Floor.
function main() {
Self.SetHitbox(0, 0, 98, 11);
Self.AddAnimation("shake", 100, ["shake1", "shake2", "floor", "shake1", "shake2", "floor"]);
Self.AddAnimation("fall", 100, ["fall1", "fall2", "fall3", "fall4"]);
// Recover time for the floor to respawn.
var recover = 5000;
// States of the floor.
var stateSolid = 0;
var stateShaking = 1;
var stateFalling = 2;
var stateFallen = 3;
var state = stateSolid;
// Started the animation?
var startedAnimation = false;
Events.OnCollide(function(e) {
// If the floor is falling, the player passes right thru.
if (state === stateFalling || state === stateFallen) {
return;
}
// Floor is solid until it begins to fall.
if (e.InHitbox && (state === stateSolid || state === stateShaking)) {
// Only activate when touched from the top.
if (e.Overlap.Y > 0) {
return false;
}
// If movement is not settled, be solid.
if (!e.Settled) {
return false;
}
// Begin the animation sequence if we're in the solid state.
if (state === stateSolid) {
state = stateShaking;
Self.PlayAnimation("shake", function() {
state = stateFalling;
Self.PlayAnimation("fall", function() {
Sound.Play("crumbly-break.wav")
state = stateFallen;
Self.ShowLayerNamed("fallen");
// Recover after a while.
setTimeout(function() {
Self.ShowLayer(0);
state = stateSolid;
}, recover);
});
})
}
return false;
}
});
}