Godot Nanite

Поделиться
HTML-код
  • Опубликовано: 31 окт 2024

Комментарии • 4

  • @r2d2meuleu
    @r2d2meuleu 6 дней назад +6

    Man that's awesome! That shouldn't be an add-on but integrated into Godot directly

  • @chucksneedmoreland
    @chucksneedmoreland День назад +1

    doesnt nanite use something like geometry maps and rasterizing it within a compute shader?

    • @atlergibby
      @atlergibby  День назад +1

      Nanite does some rasterization work in a compute shader when triangles are the size of pixels. Hardware Rasterization is still performed when triangles are big enough, since GPU hardware is optimized to work on multiple pixels per triangle. This optimization is unutilized when the tri is only 1 or 2 pixels big. For this project, all rasterization is hardware rasterization. In other words, I am rendering my geometry like normal.