5 comments

  • LarsDu884 hours ago
    PVS isn&#x27;t that expensive to compute. Especially nowadays. I assume this is actually referring to the binary space partitioning techniques used in DOOM and improved in Quake, Half-Life, etc in the late 90s, early 2000s.<p>The BSP tree was also extremely useful for optimizing netcode for games like Quake 3 Arena and games within that family and time period I believe.
  • nickandbro3 hours ago
    Love this, I will now use backface culling for my game:<p><a href="https:&#x2F;&#x2F;slitherworld.com" rel="nofollow">https:&#x2F;&#x2F;slitherworld.com</a>
    • Tanoc2 hours ago
      Backface culling has been common since the late 1990s when we started using face normals to determine lighting rather than per-vertex lighting. Pretty much every 3D game engine since about 2004 has included and enabled it by default. How is it that you made a game that doesn&#x27;t use it?
      • nickandbro1 hour ago
        I didn&#x27;t use a game engine
        • Tanoc1 hour ago
          Ahhh. So you used a wrapper or a library? Interesting then. I had assumed that almost every rendering method enables frustrum, occlusion, and backface culling by default if only to clear the number of objects needed to be tracked in memory. One thing I noticed in your game is that it&#x27;s based on the absolute mouse position, which with a 16:9 window makes it difficult to turn in certain situations because your horizontal movement space is much larger than the vertical movement space and that adversely affects turning speed. Changing so that is based just on horizontal mouse movement or adding keyboard controls might be better.
          • nickandbro1 hour ago
            Thanks for the feedback, I’ll try to get that sorted out.
  • yards2 hours ago
    I always wonder about this IRL...I&#x27;m at work rn, is my apartment still rendered?
    • keyle14 minutes ago
      The old philosophical question remains, &quot;If a tree falls in a forest and no one is around to hear it, does it make a sound?&quot; [1]<p>[1] <a href="https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;If_a_tree_falls_in_a_forest_and_no_one_is_around_to_hear_it,_does_it_make_a_sound%3F" rel="nofollow">https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;If_a_tree_falls_in_a_forest_an...</a>
  • igraubezruk1 day ago
    Very good read and visualizations, thank you for writing it
  • yopstoday1 day ago
    Dooope!