-
Notifications
You must be signed in to change notification settings - Fork 0
D3d_model_create
hpgDesigns edited this page Aug 8, 2021
·
1 revision
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
This is number 1