d3d_model_create - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Creates a new 3d model and returns the index to it.
- none: This function has no paramaters.
int: Returns the integer index of the newly created model.
// Create a model and start and end a primitive on it
mod = d3d_model_create();
d3d_model_primitive_begin(mod, pr_trianglestrip);
d3d_model_primitive_end(mod);
NOTOC