started cleaning up the scene graph

This commit is contained in:
lewd_alt
2026-06-13 16:59:32 -05:00
parent 0da26b0478
commit 24b0d68e7e
706 changed files with 11202 additions and 11716 deletions

View File

@@ -51,7 +51,7 @@ namespace _2DGAMELIB
{
foreach (Par item in but.Pars.EnumAllPar())
{
item.BrushColor = but.OverColors[i];
item.SetBrushColor(but.OverColors[i]);
i++;
}
return;
@@ -84,7 +84,7 @@ namespace _2DGAMELIB
j = 0;
foreach (Par item2 in but.Pars.EnumAllPar())
{
item2.BrushColor = but.OverColors[j];
item2.SetBrushColor(but.OverColors[j]);
j++;
}
}
@@ -122,7 +122,7 @@ namespace _2DGAMELIB
{
foreach (Par item in but.Pars.EnumAllPar())
{
item.BrushColor = but.BaseColors[i];
item.SetBrushColor(but.BaseColors[i]);
i++;
}
return;
@@ -155,7 +155,7 @@ namespace _2DGAMELIB
j = 0;
foreach (Par item2 in but.Pars.EnumAllPar())
{
item2.BrushColor = but.BaseColors[j];
item2.SetBrushColor(but.BaseColors[j]);
j++;
}
}