From 39606abcd7441528ad7f42bc8addd355cb48c133 Mon Sep 17 00:00:00 2001 From: Linus Vogel Date: Fri, 12 Dec 2025 01:17:02 +0100 Subject: [PATCH] fix --- MainScript.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MainScript.cs b/MainScript.cs index ef9aa99..5fb7458 100644 --- a/MainScript.cs +++ b/MainScript.cs @@ -84,7 +84,9 @@ public partial class MainScript : Node2D this._background = new Sprite2D(); this._background.SetTexture(bgTexture); projection.AddChild(this._background); - this._background.ZIndex = 4; + this._background.Position = Vector2.Zero; + this._background.Scale = new Vector2(1, 1) * 100; + this._background.ZIndex = 5; foreach (StarConfig star_config in obj_conf.stars) {