- [Splash] Fix Kenney Credits.

This commit is contained in:
Tanasart 2024-06-22 10:12:08 +07:00
parent bfca246db2
commit 3fc1d43953
2 changed files with 3 additions and 5 deletions

View File

@ -164,8 +164,7 @@ if !ready exit;
if(!expand) { if(!expand) {
draw_set_text(f_p1, fa_right, fa_bottom, COLORS._main_text_sub); draw_set_text(f_p1, fa_right, fa_bottom, COLORS._main_text_sub);
draw_text(x1 - ui(82), y0 - ui(4), __txt("Art by") + " "); draw_text(x1 - ui(0), y0 - ui(4), __txt("Art by Kenney"));
draw_sprite_ui_uniform(s_kenney, 0, x1, y0 - ui(4),, c_white, 0.5);
} }
break; break;
case "Workshop" : case "Workshop" :

View File

@ -1,6 +1,5 @@
function Node_Path_Scatter(_x, _y, _group = noone) : Node(_x, _y, _group) constructor { function Node_Path_Scatter(_x, _y, _group = noone) : Node(_x, _y, _group) constructor {
name = "Scatter Path"; name = "Scatter Path";
setDimension(96, 48); setDimension(96, 48);
inputs[| 0] = nodeValue("Base Path", self, JUNCTION_CONNECT.input, VALUE_TYPE.pathnode, noone) inputs[| 0] = nodeValue("Base Path", self, JUNCTION_CONNECT.input, VALUE_TYPE.pathnode, noone)
@ -162,7 +161,7 @@ function Node_Path_Scatter(_x, _y, _group = noone) : Node(_x, _y, _group) constr
_trm = _trim_rng; _trm = _trim_rng;
_trm *= eval_curve_x(_trim, _prog_raw); _trm *= eval_curve_x(_trim, _prog_raw);
for (var k = 0; k < _line_amounts; k++) { for (var k = 0; k < _line_amounts; k++) {
switch(_resetOri) { switch(_resetOri) {
@ -194,7 +193,7 @@ function Node_Path_Scatter(_x, _y, _group = noone) : Node(_x, _y, _group) constr
_dir = point_direction(x0, y0, x1, y1); _dir = point_direction(x0, y0, x1, y1);
_dir += _rot; _dir += _rot;
paths[_ind] = { paths[_ind] = {
path : path_scat, path : path_scat,
index : k, index : k,