mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 05:53:53 +01:00
85 lines
2.2 KiB
Plaintext
85 lines
2.2 KiB
Plaintext
function Node_3D_Material(_x, _y, _group = noone) : Node_3D(_x, _y, _group) constructor {
|
|
name = "3D Material";
|
|
solid_surf = noone;
|
|
|
|
newInput(0, nodeValue_Surface("Texture", self))
|
|
.setVisible(true, true);
|
|
|
|
newInput(1, nodeValue_Float("Diffuse", self, 1 ))
|
|
.setDisplay(VALUE_DISPLAY.slider);
|
|
|
|
newInput(2, nodeValue_Float("Specular", self, 0 ))
|
|
.setDisplay(VALUE_DISPLAY.slider);
|
|
|
|
newInput(3, nodeValue_Float("Shininess", self, 1 ));
|
|
|
|
newInput(4, nodeValue_Bool("Metalic", self, false ));
|
|
|
|
newInput(5, nodeValue_Surface("Normal Map", self));
|
|
|
|
newInput(6, nodeValue_Float("Normal Strength", self, 1 ))
|
|
.setDisplay(VALUE_DISPLAY.slider, { range: [ 0, 2, 0.01 ] });
|
|
|
|
newInput(7, nodeValue_Float("Roughness", self, 1 ))
|
|
.setDisplay(VALUE_DISPLAY.slider);
|
|
|
|
newInput(8, nodeValue_Bool("Anti aliasing", self, false ));
|
|
|
|
newOutput(0, nodeValue_Output("Material", self, VALUE_TYPE.d3Material, noone));
|
|
|
|
input_display_list = [ 0, 8,
|
|
["Properties", false], 1, 2, 3, 4, 7,
|
|
["Normal", false], 5, 6,
|
|
];
|
|
|
|
static processData = function(_output, _data, _output_index, _array_index = 0) {
|
|
var _surf = _data[0];
|
|
var _diff = _data[1];
|
|
var _spec = _data[2];
|
|
var _shin = _data[3];
|
|
var _metl = _data[4];
|
|
var _nor = _data[5];
|
|
var _norS = _data[6];
|
|
var _roug = _data[7];
|
|
var _aa = _data[8];
|
|
|
|
if(!is_surface(_surf)) {
|
|
solid_surf = surface_verify(solid_surf, 1, 1);
|
|
_surf = solid_surf;
|
|
}
|
|
|
|
var _mat = new __d3dMaterial(_surf);
|
|
_mat.diffuse = _diff;
|
|
_mat.specular = _spec;
|
|
_mat.shine = _shin;
|
|
_mat.metalic = _metl;
|
|
_mat.texFilter = _aa;
|
|
|
|
_mat.normal = _nor;
|
|
_mat.normalStr = _norS;
|
|
_mat.reflective = clamp(1 - _roug, 0, 1);
|
|
|
|
return _mat;
|
|
}
|
|
|
|
static onDrawNode = function(xx, yy, _mx, _my, _s, _hover, _focus) {
|
|
if(!previewable) return;
|
|
|
|
var bbox = drawGetBbox(xx, yy, _s);
|
|
var _mat = outputs[0].getValue();
|
|
|
|
if(_mat == noone) return;
|
|
|
|
if(is_array(_mat)) {
|
|
if(array_empty(_mat)) return;
|
|
_mat = _mat[0];
|
|
}
|
|
|
|
if(is_instanceof(_mat, __d3dMaterial) && is_surface(_mat.surface)) {
|
|
var aa = 0.5 + 0.5 * renderActive;
|
|
if(!isHighlightingInGraph()) aa *= 0.25;
|
|
|
|
draw_surface_bbox(_mat.surface, bbox,, aa);
|
|
}
|
|
}
|
|
} |