D3d_start - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Notation
Description
Initializes the 3D graphics pipeline and enables 3D rendering.
Parameters
- none There are no parameters for this function.
Return Values
Returns: whether the function call was successful as a Boolean value (true or false)
Example Call
// Initializes 3D mode and turns hidden surface removal and perspective projection on. A basic demonstration of setting up rendering for 3D graphics.
d3d_start();
d3d_set_hidden(true);
d3d_set_perspective(true);
NOTOC