mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 22:43:53 +01:00
[Graph Panel] Fix opening custom junction color reset connection opacity to zero.
This commit is contained in:
parent
731630c0bd
commit
cb6ab49aa6
@ -22,14 +22,13 @@ function refreshCollections() {
|
|||||||
COLLECTIONS.open = true;
|
COLLECTIONS.open = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function searchCollection(_list, _search_str, _clear_list = true) {
|
function searchCollection(_list, _search_str, _toList = true) {
|
||||||
if(_search_str == "") return;
|
if(_search_str == "") return;
|
||||||
var search_lower = string_lower(_search_str);
|
var search_lower = string_lower(_search_str);
|
||||||
|
|
||||||
var st = ds_stack_create();
|
var st = ds_stack_create();
|
||||||
var ll = ds_priority_create();
|
var ll = _toList? ds_priority_create() : _list;
|
||||||
|
|
||||||
ds_list_clear(_list);
|
|
||||||
ds_stack_push(st, COLLECTIONS);
|
ds_stack_push(st, COLLECTIONS);
|
||||||
|
|
||||||
while(!ds_stack_empty(st)) {
|
while(!ds_stack_empty(st)) {
|
||||||
@ -47,10 +46,13 @@ function searchCollection(_list, _search_str, _clear_list = true) {
|
|||||||
ds_stack_push(st, _st.subDir[| i]);
|
ds_stack_push(st, _st.subDir[| i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
repeat(ds_priority_size(ll))
|
if(_toList) {
|
||||||
ds_list_add(_list, ds_priority_delete_max(ll));
|
repeat(ds_priority_size(ll))
|
||||||
|
ds_list_add(_list, ds_priority_delete_max(ll));
|
||||||
|
|
||||||
|
ds_priority_destroy(ll);
|
||||||
|
}
|
||||||
|
|
||||||
ds_priority_destroy(ll);
|
|
||||||
ds_stack_destroy(st);
|
ds_stack_destroy(st);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,6 +2,8 @@
|
|||||||
function cola(color, alpha = 1) { INLINE return int64((color & 0xFFFFFF) + (round(alpha * 255) << 24)); }
|
function cola(color, alpha = 1) { INLINE return int64((color & 0xFFFFFF) + (round(alpha * 255) << 24)); }
|
||||||
function _cola(color, alpha) { INLINE return int64((color & 0xFFFFFF) + (alpha << 24)); }
|
function _cola(color, alpha) { INLINE return int64((color & 0xFFFFFF) + (alpha << 24)); }
|
||||||
|
|
||||||
|
function color_real(color) { INLINE return make_color_rgb(color_get_red(color), color_get_green(color), color_get_blue(color)); }
|
||||||
|
|
||||||
function color_get_alpha(color) { INLINE return (color & (0xFF << 24)) >> 24; }
|
function color_get_alpha(color) { INLINE return (color & (0xFF << 24)) >> 24; }
|
||||||
function _color_get_alpha(color) { INLINE return color_get_alpha(color) / 255; }
|
function _color_get_alpha(color) { INLINE return color_get_alpha(color) / 255; }
|
||||||
|
|
||||||
|
@ -18,6 +18,20 @@ function Node_Pin(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
|
|||||||
|
|
||||||
newOutput(0, nodeValue_Output("Out", self, VALUE_TYPE.any, 0));
|
newOutput(0, nodeValue_Output("Out", self, VALUE_TYPE.any, 0));
|
||||||
|
|
||||||
|
inputs[0].setColor = function(_color) {
|
||||||
|
inputs[0].color = color_real(_color); outputs[0].color = color_real(_color);
|
||||||
|
inputs[0].updateColor(); outputs[0].updateColor();
|
||||||
|
|
||||||
|
return inputs[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
outputs[0].setColor = function(_color) {
|
||||||
|
inputs[0].color = color_real(_color); outputs[0].color = color_real(_color);
|
||||||
|
inputs[0].updateColor(); outputs[0].updateColor();
|
||||||
|
|
||||||
|
return outputs[0];
|
||||||
|
}
|
||||||
|
|
||||||
static update = function() {
|
static update = function() {
|
||||||
if(inputs[0].value_from != noone) {
|
if(inputs[0].value_from != noone) {
|
||||||
|
|
||||||
|
@ -1800,7 +1800,7 @@ function NodeValue(_name, _node, _connect, _type, _value, _tooltip = "") constru
|
|||||||
/////============= DRAW =============
|
/////============= DRAW =============
|
||||||
|
|
||||||
static setColor = function(_color) {
|
static setColor = function(_color) {
|
||||||
color = _color;
|
color = color_real(_color);
|
||||||
updateColor();
|
updateColor();
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
@ -2505,6 +2505,8 @@ function drawJuncConnection(from, to, params) {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
draw_set_alpha(1);
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
return hovering;
|
return hovering;
|
||||||
|
@ -171,7 +171,7 @@
|
|||||||
for( var i = 0, n = array_length(_clrs); i < n; i++ ) {
|
for( var i = 0, n = array_length(_clrs); i < n; i++ ) {
|
||||||
_item[i] = [
|
_item[i] = [
|
||||||
[ THEME.timeline_color, i > 0, _clrs[i] ],
|
[ THEME.timeline_color, i > 0, _clrs[i] ],
|
||||||
function(_data) { PANEL_GRAPH.setSelectingNodeColor(_data.color); }, "", { color: i == 0? -1 : _clrs[i] }
|
function(_data) /*=>*/ { PANEL_GRAPH.setSelectingNodeColor(_data.color); }, "", { color: i == 0? -1 : _clrs[i] }
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -188,7 +188,7 @@
|
|||||||
for( var i = 0, n = array_length(_clrs); i < n; i++ ) {
|
for( var i = 0, n = array_length(_clrs); i < n; i++ ) {
|
||||||
_item[i] = [
|
_item[i] = [
|
||||||
[ THEME.timeline_color, i > 0, _clrs[i] ],
|
[ THEME.timeline_color, i > 0, _clrs[i] ],
|
||||||
function(_data) { PANEL_GRAPH.setSelectingJuncColor(_data.color); }, "", { color: i == 0? -1 : _clrs[i] }
|
function(_data) /*=>*/ { PANEL_GRAPH.setSelectingJuncColor(_data.color); }, "", { color: i == 0? -1 : _clrs[i] }
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -751,7 +751,7 @@ function Panel_Graph(project = PROJECT) : PanelContent() constructor {
|
|||||||
array_foreach(nodes_selecting, function(node) { node.attributes.color = __temp_color; });
|
array_foreach(nodes_selecting, function(node) { node.attributes.color = __temp_color; });
|
||||||
}
|
}
|
||||||
|
|
||||||
function setSelectingJuncColor(color) {
|
function setSelectingJuncColor(color) {
|
||||||
if(__junction_hovering == noone) return;
|
if(__junction_hovering == noone) return;
|
||||||
__junction_hovering.setColor(color);
|
__junction_hovering.setColor(color);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user