blueprint

Calculate Vertices Triangles Count

  • Exposure: public
  • UE Version: 4.21

LucasFalse

February 4, 2019, 11:44 am

Click the button above, it will automatically copy blueprint in your clipboard. Then in Unreal Engine blueprint editor, paste it with ctrl + v
Versions
February 4, 2019
  1. Minor Fix 2

  2. Minor fix

  3. Initial

2 comments

  • LucasFalse

    February 4, 2019, 12:07 pm

    For some reason 'Get Section From Static Mesh' multiplies count of triangles by 3 times

  • Heiner Lohmann

    September 16, 2020, 11:20 am

    Well, the count of triangles does not change, but the 'Triangles' array from 'Get Section From Static Mesh' is actually not an array of triangles but a vertex buffer. They really should change the name. It stores the indices of vertices that form triangles. So one triangle would be three consecutive elements from 'Triangles'. Google 'vertex buffer' for more explanation.