New Doodad: Box
The Box can be pushed around by the player or other mobile doodads. It is affected by gravity and can be pushed off ledges. If the player gets under a box they can bump it up with their head.
This commit is contained in:
parent
d4e6d9babb
commit
2d1b926e4f
BIN
dev-assets/doodads/box/box-1.png
Normal file
BIN
dev-assets/doodads/box/box-1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
dev-assets/doodads/box/box-2.png
Normal file
BIN
dev-assets/doodads/box/box-2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
dev-assets/doodads/box/box-3.png
Normal file
BIN
dev-assets/doodads/box/box-3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
BIN
dev-assets/doodads/box/box-4.png
Normal file
BIN
dev-assets/doodads/box/box-4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
51
dev-assets/doodads/box/box.js
Normal file
51
dev-assets/doodads/box/box.js
Normal file
|
@ -0,0 +1,51 @@
|
|||
// Pushable Box.
|
||||
var speed = 4;
|
||||
var size = 75;
|
||||
|
||||
function main() {
|
||||
Self.SetMobile(true);
|
||||
Self.SetGravity(true);
|
||||
Self.SetHitbox(0, 0, size, size);
|
||||
|
||||
Events.OnCollide(function (e) {
|
||||
if (e.Actor.IsMobile() && e.InHitbox) {
|
||||
var overlap = e.Overlap;
|
||||
if (overlap.Y === 0) {
|
||||
// Standing on top, ignore.
|
||||
return false;
|
||||
} else if (overlap.Y === size) {
|
||||
// From the bottom, boop it up.
|
||||
Self.SetVelocity(Vector(0, -speed * 2))
|
||||
}
|
||||
|
||||
// If touching from the sides, slide away.
|
||||
if (overlap.X === 0) {
|
||||
Self.SetVelocity(Vector(speed, 0))
|
||||
} else if (overlap.X === size) {
|
||||
Self.SetVelocity(Vector(-speed, 0))
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
});
|
||||
Events.OnLeave(function (e) {
|
||||
Self.SetVelocity(Vector(0, 0));
|
||||
});
|
||||
|
||||
// Start animation on a loop.
|
||||
animate();
|
||||
}
|
||||
|
||||
function animate() {
|
||||
Self.AddAnimation("animate", 100, [0, 1, 2, 3, 2, 1]);
|
||||
|
||||
var running = false;
|
||||
setInterval(function () {
|
||||
if (!running) {
|
||||
running = true;
|
||||
Self.PlayAnimation("animate", function () {
|
||||
running = false;
|
||||
})
|
||||
}
|
||||
}, 100);
|
||||
}
|
|
@ -127,6 +127,12 @@ objects() {
|
|||
doodad install-script crumbly-floor.js crumbly-floor.doodad
|
||||
cp *.doodad ../../../assets/doodads/
|
||||
|
||||
cd ../box
|
||||
|
||||
doodad convert -t "Box" box-1.png box-2.png box-3.png box-4.png box.doodad
|
||||
doodad install-script box.js box.doodad
|
||||
cp *.doodad ../../../assets/doodads/
|
||||
|
||||
cd ..
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user