Yep. A few years ago, I made a sonic game with Damizien's but I've always wanted a smooth "parkour" engine. So over the last few months I played through all the 2d Sonics again and did a lot of reading on the Sonic Physics Guide. My previous game, Suh Burb, was meant to be my step into the engine, but it never kicked off (in that respect). Thus, here we have it. This new engine that feels a little like Sonic, with tricks, adventure, storyline, etc.Just out of curiosity, have you made that slope engine yourself? Also, what version of Game Maker are you using?
Oh, and 8.1 Pro.
If you draw SHAPES or just can't be bothered with making one sprite for every slope for every stage tileset, here's one way you can texture stuff nicely (assuming you don't use the free version of Game Maker):
- create a surface the size of the view
- set the drawing target to this surface
- draw_clear_alpha() the surface to complete transparency
- tell the slopes [that are inside the view] to draw themselves on the surface
- create a new surface the size of the view, set the drawing target to this surface, and use a for loop to tile it with the texture you want to texture the slopes with. (Translate the image with view_xview mod width_of_image, view_yview mod hieght_of_image to make it look that the texture is "stuck to the slopes" instead of moving around with the view)
- There should be a function surface_set_alpha_from_surface(); use that to erase alpha from the tiled surface using the slope surface
- draw the background (you seriously need a texture there too!)
- draw the tiled surface which has now its alpha erased so that it's only visible where there are solid ground
- draw all other sprites
- delete the two surfaces to free memory
You seriously should do that. It'd look a lot nicer than ugly plain gray everywhere.
I was never really that good with surfaces, but this is a nice guide, thank you. The levels are actually built of huge Photoshop images. (Around or greater than 5000x2500)
Obviously since GM (and lesser graphics cards) cant handle such huge things, I have it automatically split up and streamed in when necessary. (I was quite proud.
Also, judging by the screenshot, you've based all characters from the same template... that's a bit bad. You gotta have more variety; for instance, make the bad guys a bit taller (user right-click to quick-copy a selection in the image editor; then just drag it upward at e.g. legs, waist to easily make a character taller). You should also give characters multiple skin and hair color; my post-apocalypse platformer Final Columbus features characters with pink, purple and green hair and a range of different skin colors. Also using different eye colors is easy to underestimate.
For instance, make the common ninja enemies brown-black in skin color and have dark green hair and perhaps sunglasses. The next tier of stronger ninjas could be blue-white-blonde asians, they should also have some cool 5x5 pixel red symbol on their suits' left chestplate, like a tiger head, a katana silhouette or a swastika. Heck, just blotch a bunch of pixels in a red color that doesn't seem blood red, and leave what it is up to the player's imagination.
Good tips. Right now I'm using a lot of the resources from Suh Burb (as linked earlier) since it's a kind of sequel, but I'm really hoping to at some point update all the character sprites. Unfortunately for me, I'm not exactly the best character artist. :|
Oh, also, investigate putting some BACKGROUND DECORATIONS to your levels. Like computers, desks, chairs, flags with the bad guys' symbol on it, eerie tubes with organs and animals preserved in green liquid, posters, pot plants, places where the wall coating has fallen off so that you can see the bricks beneath it, windows where the sunlight fall in (draw a slanted yellow polygon below the window with an alpha of around 128-64).
Nothing makes a game seem as bland as filling it with interactables only, especially if they're flat non-textured stuff. You really should work on getting some eye-candy into the game, your current screenshots aren't making me willing to play it at all (and I'm one of those people who don't judge games by their graphics, mind you!).
EDIT: Heck, we aren't talking getting some eye candy here, we're talking getting some eye food into your game.
Hey, I hear ya. Suh Burb was the God of that kind of stuff.
Here's just outside the lair's exit:

(dynamic lens flare and 3d moving water I made myself in after effects. ;D)
Thanks for taking the time for all of this, Yal, I really appreciate it.











