fix star projection

This commit is contained in:
asrael 2026-01-23 11:04:05 -06:00
parent c771fa665d
commit df5d905050
22 changed files with 612 additions and 660 deletions

View file

@ -18,6 +18,12 @@ typedef enum pxl8_blend_mode {
} pxl8_blend_mode;
typedef struct pxl8_gfx_material {
char name[16];
pxl8_vec3 u_axis;
pxl8_vec3 v_axis;
f32 u_offset;
f32 v_offset;
u32 texture_id;
u32 lightmap_id;
u8 alpha;