Pixel-Composer/scripts/node_pb_fx/node_pb_fx.gml
2024-09-04 08:57:11 +07:00

41 lines
1.5 KiB
Plaintext

function Node_PB_Fx(_x, _y, _group = noone) : Node_PB(_x, _y, _group) constructor {
name = "PB FX";
batch_output = false;
newInput(0, nodeValue("pBox", self, CONNECT_TYPE.input, VALUE_TYPE.pbBox, noone))
.setVisible(true, true);
newOutput(0, nodeValue_Output("pBox", self, VALUE_TYPE.pbBox, noone));
static getGraphPreviewSurface = function() {
var _nbox = outputs[0].getValue();
if(_nbox == noone) return noone;
if(is_array(_nbox)) {
if(array_empty(_nbox)) return noone;
_nbox = _nbox[0];
}
return _nbox.content;
}
}
#macro PB_FX_PBOX if(_output_index == 1) { \
var _surf = outputs[0].getValue(); \
if(is_array(_surf)) _surf = array_safe_get_fast(_surf, _array_index); \
if(!is_surface(_surf)) return noone; \
\
var _pbox = new __pbBox(); \
\
_pbox.w = surface_get_width_safe(_surf); \
_pbox.h = surface_get_height_safe(_surf); \
\
_pbox.layer_w = surface_get_width_safe(_surf); \
_pbox.layer_h = surface_get_height_safe(_surf); \
\
_pbox.mask = surface_create(_pbox.w, _pbox.h); \
surface_set_shader(_pbox.mask, sh_pb_to_mask); \
draw_surface_safe(_surf); \
surface_reset_shader(); \
\
return _pbox; \
}