I definitely agree with all critiques. The game is way more buggy than it should be for the simple concept. The wait time is also excruciating on replay I just didn’t want it to cut away the second that they finished talking all things learned. I meant to add sound effects but I had around a minute thirty left with the project in this state so I decided not to push it. Thanks for the feedback! And the signal received thing was an attempt to debug that shape slime because I had all of the same code but it wasn’t working the same…very annoying.
MojoTheBojo
36
Posts
1
Topics
3
Followers
A member registered Nov 24, 2021 · View creator page →
Creator of
A platformer based dialogue tree option for construct 3
Run in browser
Wreak havoc as a big monster whose goal is to eat all the residents of a confusing castle. Say knighty night!
Platformer
Play in browser
Recent community posts
Knighty Night Castle! jam comments · Replied to The Coding Couple in Knighty Night Castle! jam comments
Knighty Night Castle! jam comments · Replied to The Coding Couple in Knighty Night Castle! jam comments
Please add this script to an at start of layout event For all future games. It will make it so that the screen wont scroll when you push up or down.
function $(){ return document.querySelector.apply(document,arguments);
}
var canvas = $('canvas'),
keysDown = []; // You can also define this as an object, {}
canvas.tabIndex = 0;
canvas.onclick = function(e){
document.body.scrollTop = canvas.offsetTop; // scrolls to canvas element
canvas.focus(); // re-focuses canvas in case the scroll unfocused it
}
canvas.onkeydown = canvas.onkeyup = function(e){
keysDown[e.keyCode] = e.type == 'keydown';
e.preventDefault();
return false;
}
function isDown(key){
return keysDown[key];
}
function resetMap(){
keysDown = [];
return false;
}
Trijam #173: The 3 hour game jam community · Posted in Help I was 54:19 into my game when the entire thing crashed and somehow I lost all my saves can I restart my timer to re
Trijam #173: The 3 hour game jam community · Created a new topic Help I was 54:19 into my game when the entire thing crashed and somehow I lost all my saves can I restart my timer to re