(Geometry Dash level) SolySolyTale Devlog

This is a devlog for myself for a bossfight im recreating in Geometry Dash (inspired by undertale bossfights), called SolySolyTale.
As of the making of this post, I:

image
mapped out a movement system, and implemented the walls so they stop the player

8 Likes

Interesting…

6 Likes

Difficulty of the level? I might want to beat it if under medium demon…

7 Likes

im not really good with gauging difficulty cuz platformer is still new for me

6 Likes

Gl with this project, I’m working on a 2.2 level rn using the song Lost by Creo

6 Likes

I’m willing to play any level preferably under or equal Medium demon and non-plataformer (no practice with plataformer). If anyone finishes a level you can message me to beat it or even verify it.

3 Likes

honestly getting the main mechanics will be the hardest part


on another note

4 Likes

Oh wow, Undertale in GD.
I wonder if it would be easier learning how to code and make it ;-;
Great job!

3 Likes

ok ive decided to abandon that idea simply because its super annoying to code with gd’s stupidity and its limitations. it would also take too long, so imma try to compromise and only make an undertale themed fight (the movement system stays). i waste time alot so this will help.


dont worry it will still be very code intensive, but not as much, the attacks should now be the hardest part of this level (along with balancing, sprite making, title screen making, some other code, writing the credits, etc)

3 Likes

Is it hard ?
to do.

3 Likes

idk but considering i dont have much experience on platformer (aside from skills i already have from gaming in general, and some gd skills(?)) im aiming for it to be insane demon, i like that difficulty


image
spritework


some test attacks



im also trying to code in blue/orange attacks, which is really hard. The main problem is that you can hold two opposite directions to not move. but its hard to detect that. so im just going to find every edge case. im grouping them by how many buttons you are pressing (there are four directional buttons, up, down, left, and right. therefore, im going to put these in four categories). a simplified version of what im doing can be found below:

If only one button is pressed, then you are moving

If two buttons are pressed, then you are either moving or not movnig. for this, i only need to check if the two buttons being pressed are opposite. so holding two vertical directional keys (Up+down) or horizontal keys (left+right) means you are still, but holding 1 vertical key and 1 horizontal key means you are moving. This one is really the only hard one to code in as if you are pressing two buttons, you are either moving or not moving. there isnt a guarantee like with the other 3 cases

If three buttons are pressed, then you are moving. this is because since there are only four directional inputs, at least 2 of them cancel out, leaving one button which is moving the player. This in a way puts this category under the only one button category. interestingly enough (this wont affect anything), holding both vertical buttons disallows you to move left or right

you are not able to press four buttons at once without multiple keyboards, something i wont need to consider as most people dont have multiple (i do because i use a wired keyboard with my laptop, but its a really niche case scenario. it doesnt matter anyways, as there is only one combination of four keys being pressed, which is well, them being all pressed, meaning the horizontals cancel each other out and same with the verticals. I could deal with this if i want.

3 Likes

okay ive decided to move onto another level. the idea for it came in a dream. i may come back to this level. heres a screenshot so you guys know im cooking

.
quite a few have asked for the logistics of this level, so as soon as im done the letter recognition features, im going to write the method here. (im not making a new post because its gonna be a miracle if i even return to the old level)


actually if im abandoning SolySolyTale, i might as well post it (i spent the last few days editing the battle sprites before switching to this project)

2 Likes


image of the characters (if i revisit this i most likely wont keep the face on N’s staffaw


im too tried to post a video especially because its too big apparently, but the id is 103509830


2 Likes
random images of stuff




if any of you guys have been following me you may know how i made the letter writing system. im completely overhauling. the main changes is that it works more like the Android phone lock combination
image
this is a big inspiration for my level. it doesnt work exactly like that, but its decently close.



the idea is that you drag to make letters. due to the fact that im making it work like this, i must add the 22.5’ sloped lines. this changes the amount of lines to 20 to 28. this is a really big change in terms of the numbers, as 2^20 is only 1,048,576, meaning there were only 1,048,576 combinations you could make. now, there are 2^28 combinations you can make, or DAMN 268,435,456. thats way bigger and will make the amounf of combinations ill have to make increase by a lot

2 Likes

ive finished it. now i only need to code in every combination before the main premise of this level is finished. ill do an indepth ish explanation when i finish implementing all the letter combinations.

3 Likes