Skip to content

Commit

Permalink
feat(model): add additional material flags
Browse files Browse the repository at this point in the history
  • Loading branch information
fallenoak committed Jan 5, 2024
1 parent 73a5ecb commit 10c430c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/lib/model/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ enum M2_MATERIAL_BLEND {
}

enum M2_MATERIAL_FLAG {
FLAG_DISABLE_LIGHTING = 0x1,
FLAG_DISABLE_FOG = 0x2,
FLAG_TWO_SIDED = 0x4,
FLAG_DISABLE_DEPTH_TEST = 0x8,
FLAG_DISABLE_DEPTH_WRITE = 0x10,
}

enum M2_TEXTURE_COMBINER {
Expand Down

0 comments on commit 10c430c

Please sign in to comment.