From 41d1904f0872e59d034a244ffbcc08adcc1ac1b5 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 8 Feb 2024 16:43:09 -0800 Subject: [PATCH] notes --- src/model.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/model.rs b/src/model.rs index 5100db6..92f17cc 100644 --- a/src/model.rs +++ b/src/model.rs @@ -106,6 +106,9 @@ pub struct Mesh{ pub unique_color:Vec, pub unique_vertices:Vec, //polygon groups are constant texture AND convexity slices + //note that this may need to be changed to be a list of individual faces + //for submeshes to work since face ids need to be consistent across submeshes + //so face == polygon_groups[face_id] pub polygon_groups:Vec, //graphics indexed (by texture) pub graphics_groups:Vec,