Matrix_get - hpgDesigns/hpg_projects GitHub Wiki
Description
matrix_get(type)
This function returns an array of 16 values, corresponding to a given 4x4 matrix type.
Parameters
| Parameter | Description |
|---|---|
| type | The type of matrix to get (see the constants listed) |
Matrix types Constants list
| Constant | Description |
|---|---|
| matrix_view | the current view matrix |
| matrix_projection | the current projection matrix |
| matrix_world | the current world matrix |
Return Values
returntype: Returns...
Example Call
some_array = matrix_get(matrix_view);