Ol' Bethy's Stairway to Heaven
THE ASSETS DON'T LOAD AND I DON'T KNOW WHY. SORRY THERE IS NOTHING TO PLAY. This game is unfinished but I am submitting it anyway because this is my first game jam. Thank you for understanding.
Contributions:
Zoop_Potato: Art and Programming (github)
Kianu Reeves: Art and Programming (github)
EtnMunlord: Music
Status | In development |
Platforms | HTML5 |
Author | KingPotato2084 |
Tags | bevy |
Comments
Log in with itch.io to leave a comment.
Heya friend! I left you a PR with some instructions on how to construct your zip so that your assets would load.
It seems like you've fallen pray to absolute URLs instead of using relative.
Too late to change, but for the future: Notice that all URLs in the HTML source starts with "/"? This means they'll be loaded from the root of the web server, but that's not where Itch stores them. Instead, the URLs should all start with "./" so they are loaded relative to the index.html. Seems that was the problem here.
Thank you!