Closed joshuaskelly closed 1 month ago
Add support for loading a Quake MDL file as a struct of delve-framework native types (meshes and textures).
I'd appreciate an audit/assistance of my memory management because I've mostly ignored it up to now.
var mdl = try delve.utils.quakemdl.open(allocator, "path/to/my.mdl");
Heavily based off of meshbuilder example. Illustrated how to grab a mesh from an MDL struct.
Implementation file. User facing structs are public and at top of file. Primary way to interact with module is the open() function.
open()
Summary
Add support for loading a Quake MDL file as a struct of delve-framework native types (meshes and textures).
I'd appreciate an audit/assistance of my memory management because I've mostly ignored it up to now.
Usage
Review Guide
src/examples/quakemdl.zig
Heavily based off of meshbuilder example. Illustrated how to grab a mesh from an MDL struct.
src/framework/utils/quakemdl.zig
Implementation file. User facing structs are public and at top of file. Primary way to interact with module is the
open()
function.