it does take a while to load
GameDevForFree
Creator of
Recent community posts
this is backrooms, no way to leave lol, this is the secret ending of the game, subaruCRWTV helped me lol, bad english sorry, +3 (this is what I'm guessing was supposed to be the completed text, can you please confirm this?)
EDIT: thanks for telling me about the scrambled text being an easter egg, I thought it was just scrambled for the sake of it
the game felt simple at first as your just a blocky creature moving through a blocky world, but then I tried to glitch my way out through the back and ended up in this glitched reality where text was all encrypted I'm guessing. I wonder if the text actually decoded into some kind of text.
After a little while of jumping around and having fun, I fell onto a blue door looking object and then the game ended.
overall I quite enjoyed your game and I would like to see if this game has a sequal?
I like what you did with this game, flipping between platforms seems like something I would play to kill the hours.
But there's no sound effects or music in your game so after a while it starts getting bleak.
Besides all that an overall 4/5 in my opinion as I'm a fan of very simple games that you can get lost in
Side note: if you want easy sound effects I would recommend sfxr which can be found at https://www.drpetter.se/project_sfxr.html, it generates majority of noises you'll need for making games with just a click.
And if your having trouble programming noises in try:
Public AudioSource audioname;
audioname = audioname.GetComponent<AudioSource>();
audioname.Play();
#and if you want to change sounds in game
Public AudioClip clipname;
audioname.clip = clipname;
audioname.Play();