Pixel-Composer/scripts/d3d_vertex/d3d_vertex.gml
2023-10-05 11:29:20 +07:00

41 lines
734 B
Plaintext

function __vertex(_x = 0, _y = _x, _z = _x, color = c_white, alpha = 1) constructor {
x = _x;
y = _y;
z = _z;
nx = 0;
ny = 0;
nz = 0;
u = 0;
v = 0;
self.color = color;
self.alpha = alpha;
static setNormal = function(_nx = 0, _ny = _nx, _nz = _nx) {
gml_pragma("forceinline");
nx = _nx;
ny = _ny;
nz = _nz;
return self;
}
static setUV = function(_u = 0, _v = _u) {
gml_pragma("forceinline");
u = _u;
v = _v;
return self;
}
static toString = function() { return $"[__vertex] ( pos: ({x}, {y}, {z}), nor: ({nx}, {ny}, {nz}), uv: ({u}, {v}), {color}, {alpha} )"; }
static clone = function() {
gml_pragma("forceinline");
return new __vertex(x, y, z, color, alpha);
}
}