Playtesting Feedback
Wall Jumping is too hard (requiring major tilts where you can’t even see the screen)
- This problem was actually two-pronged, whilst I fixed the above another problem was more prevalent: the controls for Wall Jumping didn’t adhere to player expectations (the usual tactic i’ve seen is players stick to the wall, then move their character towards their jump direction then jump – but by then the player would have detatched!).
- This took me a while to fix, I tried editing player movement speed whilst attached to the wall but that didn’t work, but eventually just changing the Polygon Collider for the attachment trigger to be more accomodating worked (essentially the player is attached for much longer)
ropeHook deployment is awkward as it requires aiming whilst others require taps anywhere
- This was a consistent problem but after playing the game my girlfriend (who said it) and other people feel it is a good fit after all
Landing on platforms is hard, a simple element made much more interesting due to the accelerometer (the tutorial itself can be too hard!)
- After playtesting more recently this is a problem with the level design, there seems to be an overall problem of difficulty which is due to me designing it for my personal skill level, i’ve since tweaked the tutorial to be more accomodating!
Other Gameplay Tweaks
This was simple enough to do, essentially if the player’s y velocity exceeds a certain amount then its a fatalFall (a boolean) which then calls the KillPlayer function. However I did have to test falling at various heights to see what was appropriate, for now a y velocity of 15 is enough to kill you.
I also had an issue with using the playerSpikes and the Fall Damage, if the player fell past y velocity of 15 (which then ticks the fatalFall boolean) but then proceeds to attach to the wall and then jump to a platform they still die as the boolean is still true. To avert this I added a fatalFall = false; to the player whenever they attach to the wall using the playerSpikes.
The other major tweak I did was to remove the spawning system (for now). As the level is short (1~ minute long) and that powerUps don’t regenerate it proved an issue when playtesting with people who died often. If I had longer levels (which I guess would go against the short-playtime ethos of the game) I would implement it back in but for now it can be shelved.
Tutorial Level Walkthrough
Major changes from last time include floating tutorial text and tweaked placement of platforms and obstacles from playtesting feedback for better gameflow.
Above is the current level plan, while I initially wanted to focus on the whole ‘Down’ it was hard to showcase some other gameplay elements (namely on ways and situations you could use the PowerUps for)
My level didn’t actually have a initial plan but was something born naturally from making areas to test specific abilities as I made them as well as taking inspiration from tutorial objectives seen in my old level designs.
This section is simple enough, straightforward text to tell the player how to move as well as an obstacle (the spikes) to move past.
The first PowerUp the player sees, with text to clarify to remove any sort of confusion.
A test of movement for the parachute, the upper encounter highlights the dangers of avoiding walls (as it cancels the parachute) and the lower encounter focuses on moving to avoid spikes.
In other videos the upper encounter had a sideways spike but that was removed as it was to severe a punishment after playesting with newbies.
The first set of spikes teach the player to wall jump on the same wall whilst the one above teach the player how to wall jump proper (by jumping wall to wall)
This section (right before the rope bit) is to showcase platforming jumping elements.
If you compare it to previous videos you can recall that these platforms used to be floating ones but I added pillars to the latest version to 1. change the look and add a ‘source’ for the floating platforms and 2. to allow the player to recover by climbing up by spikes if need be.
Above is the second rope swinging challenge, this one presents only a thin pillar to latch on to to highlight an aimed swing.
After some playtesting the pillar was widened a bit to be more forgiving.
I added a little flag sprite to help identify the ending better as some people noted they didn’t know that tunnel ended the level (with the blue colouring to represent ‘good’ or the ‘right way’).