Primary tabs

Comments by User

Friday, July 26, 2019 - 13:09

As someone who has *attempted* to create a collision & physics system, I highly recommend using a pre-built library. There is SO much that you have to do, and it's very difficult to say the least.

Simple collision detection isn't too complex. Using a bounding-box collision system, where you have a square for each collision object is one of the most simple and effective ways of doing collision.

What gets complex is when you have to work out what to do after that.

If two objects collide, do they bounce off of each other? How much friction is applied? How much do the objects weigh, and how does gravity and other external forces affect this? If a character collides with a wall, what actually stops him from clipping through the wall? If the characters velocity is too high or not stopped correctly, your character may get stuck in the wall or floor.

That's not even scratching the surface. There's so much more to think about...

Good luck with it though, let me know how it goes!

(Look at Box2D if you give up ;) )

Friday, July 26, 2019 - 12:59

Hey InnerConflict!

Good choice of art style for your game! This stuff looks really good on adverts too.

I found a few tutorials on this type of art style by searching for "digital painting cartoon characters tutorial". To change them to be this sort of style, use extremely bright and eye-catching colours!

Check these tutorials out though!
http://www.cgmeetup.net/home/digital-painting-in-photoshop/

https://en.tuto.com/photoshop/digital-painting-video-tutorial-cartoon-ch... (Paid)

https://www.youtube.com/watch?v=lV3whC1k-Us

Hope this helps! :D

Pages