Page 1 of 3

Game test v0.01

Posted: Wed Jul 02, 2025 2:54 pm
by minimy
Hello, I leave you the link to any movies of the test of my game. :lol:
Testing the game engine in PB6.02 (6.21 shadows are very slow or not shadows with any meshes).
I have some problems with animations because sometimes when killing enemies the animation doesn't end. (it is necessary to find why, i think is a timer problem)
The real speed is about 60 fps with 20 enemys, but when I record the video it drops to 30 or so and i limit the enemys to 10. (desktop captured with vlan is not too fast)
Now im improving the speed and other minor errors...
Im making the animations to change weapons and drop granades. (booom!!)

The game:
The idea is to include vehicles that can be driven.
Add an inventory (done) and make it open world. (hehe let's see what comes out...) :mrgreen:
The animations and characters are made by me (copying my movements recorded on video). I hope you like it.

Image

Videos are in my server, no ads (youtube aghhh!) :mrgreen:
video1: https://tvcry.net/downloads/TESTgame1.mp4
video2: https://tvcry.net/downloads/TESTgame2.mp4
video3: https://tvcry.net/downloads/TESTgame3.mp4

will be nice any way to use GPU nvidia with ogre because intel card is not very fast.

A reminder for everyone who has problems with copied entityes animations. When you copy an entity, you also copy the animation. Keep that in mind.

Thanks to pf_shadoko, miso, azjio, psicofanta (many more, but no space, sorry) and all members of the forum, because a i learn a lot here. And how not to PB team for this great tool.

Criticisms, comments and suggestions are welcome

Re: Game test v0.01

Posted: Wed Jul 02, 2025 3:18 pm
by miso
Looks cool. They also leave footprints ;)

Re: Game test v0.01

Posted: Wed Jul 02, 2025 3:26 pm
by Bisonte
Veeeery nice ;)

Re: Game test v0.01

Posted: Wed Jul 02, 2025 3:27 pm
by Fred
Looks solid !

Re: Game test v0.01

Posted: Wed Jul 02, 2025 4:04 pm
by threedslider
Awesome ! Nice to see your game in live so keep it up !

Thanks for sharing :D

Re: Game test v0.01

Posted: Wed Jul 02, 2025 6:38 pm
by skinkairewalker
awesome !!!!

Re: Game test v0.01

Posted: Wed Jul 02, 2025 7:20 pm
by Caronte3D
Finally, a promising 3D game project made with PB for years. 8)
Great work!
Mucho ánimo para seguir adelante!

Re: Game test v0.01

Posted: Wed Jul 02, 2025 9:17 pm
by minimy
Thank you all very much for the comments and support. :D
This is another video recorded with the smartphone, in which the real speed is better appreciated.

https://tvcry.net/downloads/TESTgame4.mp4

Re: Game test v0.01

Posted: Wed Jul 02, 2025 10:39 pm
by Andre
Looks really impressive for a 3D game project in PB! :D

Re: Game test v0.01

Posted: Thu Jul 03, 2025 12:27 am
by idle
That's looking good.

Re: Game test v0.01

Posted: Thu Jul 03, 2025 9:40 am
by AZJIO
minimy wrote: Wed Jul 02, 2025 2:54 pm Videos are in my server, no ads (youtube aghhh!)
No access, but maybe you could upload it to YouTube? I have a "Ublock Origin", so there is no advertisement.

Re: Game test v0.01

Posted: Thu Jul 03, 2025 12:08 pm
by minimy
Hello AZJIO, no acces? mmm! is weird... (i think my server have no geo restrictions)
No problem, now is in youtube too.

https://youtu.be/6aF7lif1S_I

Re: Game test v0.01 - where is my car?

Posted: Sat Jul 05, 2025 9:56 pm
by minimy
Now car test. Next thing is mix the people with the car and add two diferent controls for the car and soldier.
I did the car whith pivots for wheels and work nice.
For propulsion use ApplyEntityTorqueImpulse, give me better results than ApplyEntityTorque, more soft with small impulses.
Brakes use this SetJointAttribute(wheel, #PB_Joint_LowerLimit, 0, 3) may be not the best way but work. Block the wheel.
To calculate and limit the speed im use GetEntityAttribute(wheel,#PB_Entity_AngularVelocity) the problem is when th wheel slide, then speed is not real, but more or less work fin because can limit the maximun rotation speed of the wheel.

This part was hard because using cylinders for colisions the result driving the car was hard, like driving over rocks.
The solution is use spheres for wheels and change the colision size manually, now driving is soft and fun. :mrgreen:

Sorry about the cameraman, may be drunk. The driver is drunk sure!! :lol:

Image

The video: https://youtu.be/aBKC7WoWGVw

Re: Game test v0.01

Posted: Sat Jul 05, 2025 10:24 pm
by miso
Looks solid, as always. I will follow the improvements on this project. (you choosed the camera type (TPS) that is hardest to do well, so I'm interested in seeing your future solutions. But there are many other.)

Re: Game test v0.01

Posted: Sat Jul 05, 2025 11:06 pm
by minimy
miso wrote: Sat Jul 05, 2025 10:24 pm Looks solid, as always. I will follow the improvements on this project. (you choosed the camera type (TPS) that is hardest to do well, so I'm interested in seeing your future solutions. But there are many other.)
Hello miso!, no TPS, i think make the game in aerial perspective (false isometric) perspective to limit view zone, some thing like this. Like in the youtube video. I think is more easy because no need calculate camera colisions.
Image

Do you know any trik to limit entity view in distance? camerarange() no work with shadows.