🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

My Game Engine Development - new video

Published December 31, 2019
Advertisement

Hi all,

I have a short new video about the game engine that I write at home during my free time.
I want to make a game with it one day.
I hope you like it, Cheers ^_^

https://www.youtube.com/watch?v=tYXqJyf3bQ4







1 likes 3 comments

Comments

ongamex92
December 31, 2019 12:28 AM
fleabay

Are you using Bullet to handle all of the collision detection/resolution? Mainly I'm interested in knowing if Bullet is handling the lifts/moving platforms and player interactions.

Also, are you using inheritance, EC or ECS?

Thanks

January 19, 2020 02:34 AM
ongamex92

@fleabay
Hey, Yes I'm using bullet, the moving platforms and moving thins over them is handled manually. firstly the platforms doesn't moves based on velocity, each simulation step I literally change the position of the platform. Before moving the platform finds all objects that are on top of it (using bullet manifolds) and moves the object that are on top of the platform as well.

Also, are you using inheritance, EC or ECS? kind of a mix of both, it look more like COM objects, I have a base Actor Object, which could provide interfaces (which could be inherited or composited, up the programmer). Examples are RigidBody, 3DModel, ParticleSystem, Health

EDIT: Sorry for the late reply, but notification don't always work for me, I'm full with notifications I do not care about so I never watched them.

April 27, 2020 09:12 AM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement