Update
This commit is contained in:
parent
0ff275c055
commit
84f197fe28
|
|
@ -224,7 +224,15 @@ side_panel.foreground_src = "SIDE_BACKGROUND2.png";
|
||||||
side_panel.x = x0;
|
side_panel.x = x0;
|
||||||
side_panel.y = y0;
|
side_panel.y = y0;
|
||||||
side_panel.z = 1;
|
side_panel.z = 1;
|
||||||
|
|
||||||
|
if (aspect_ratio == 3440 / 1440) {
|
||||||
side_panel.width = Percent(25, screen.width);
|
side_panel.width = Percent(25, screen.width);
|
||||||
|
} else if (aspect_ratio == 1920 / 1080) {
|
||||||
|
side_panel.width = Percent(25, screen.width);
|
||||||
|
} else {
|
||||||
|
side_panel.width = Percent(33, screen.width);
|
||||||
|
}
|
||||||
|
|
||||||
side_panel.height = Percent(100, screen.height);
|
side_panel.height = Percent(100, screen.height);
|
||||||
|
|
||||||
blur_result = Blur(
|
blur_result = Blur(
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue