Pixel-Composer/scripts/__d3d_gizmo/__d3d_gizmo.gml

13 lines
283 B
Plaintext
Raw Normal View History

function __3dGizmo() : __3dObject() constructor {
vertex = [];
VF = global.VF_POS_COL;
render_type = pr_linelist;
static submitSel = function(params = {}) {
shader_set(sh_d3d_wireframe);
2023-11-15 02:35:30 +01:00
shader_set_color("blend", c_white);
submitVertex(params);
shader_reset();
}
}