Improving Performance With Raylib (Loud intro... sorry)

แชร์
ฝัง

ความคิดเห็น • 11

  • @jultomten3739
    @jultomten3739 หลายเดือนก่อน +1

    So my code that used a "stack" for drawing and did stuff like not draw stuff being behind other stuff and outside the camera was not so dumb after all, gonna add the drawing in order. Great video.

  • @raynertanxw
    @raynertanxw หลายเดือนก่อน

    Very well done video! Clear illustrations and examples with measured results!

  • @GurraDesu
    @GurraDesu 3 หลายเดือนก่อน +3

    This was a really good guide explaining how the code behaves behind the scenes! Thank you.
    What I'd like to advise is to look at how you master volume for your tutorial. I near blew out my ear drums from your intro, and then I sill had to raise the volume afterwards because your voice is so much lower.

    • @GameDevTutorialsYT
      @GameDevTutorialsYT  3 หลายเดือนก่อน +2

      Yeah, the intro was not good, I got some new software for making these and am getting used to it. I have lowered it in the template for future use.

  • @eba-pachi
    @eba-pachi 3 หลายเดือนก่อน +3

    thanks for your video! I really appreciate that you're really to the point, no time wasted :)

  • @anstropleuton2
    @anstropleuton2 3 หลายเดือนก่อน +3

    Love the inclusion of stock footages

  • @deadshot9640
    @deadshot9640 3 หลายเดือนก่อน +7

    tysm and pls Do some raylib tutorials pls 🙏

  • @THEDuWolf
    @THEDuWolf หลายเดือนก่อน

    Excellent video, thank you very much

  • @PurpleKnightmare
    @PurpleKnightmare 3 หลายเดือนก่อน +1

    This is great! Thank you for making this!

  • @FlamingRiot
    @FlamingRiot 3 หลายเดือนก่อน

    Awesome video man! You talked about culling in 2D worlds, but how would that work in 3D? I guess that wouldn't be as simple as placing if statements to test if objets are behind the camera, right ?

    • @McIceTV
      @McIceTV 3 หลายเดือนก่อน +1

      Depending on the type of game you can still use a 2d check to cull 3d objects. When you view the world from top down you can create a list of object that only exist in the cameras fov and if the objects are small it would be enough to only check if the position of the object is in the fov instead of checking if parts of the mesh are in the fov.
      For more complex culling you need to look at 3d frustum culling. There you have the frustum, basically a 3d block and you check which meshes bounding boxes are in the frustum and only then you draw them.