Compare commits

11 Commits

24 changed files with 425 additions and 76 deletions

View File

@@ -1,5 +1,6 @@
{ {
"conventionalCommits.scopes": [ "conventionalCommits.scopes": [
"ci/cd" "ci/cd",
"recuration"
] ]
} }

View File

@@ -0,0 +1,16 @@
extends Node
var planets: Array[Node] = []
func register(planet: Node) -> void:
planets.append(planet)
func unregister(planet) -> void:
planets.erase(planet)
func _process(delta: float) -> void:
if Time.get_ticks_msec() % 2000 < delta * 1000:
print_debug(JSON.stringify(planets, "\t"))

View File

@@ -0,0 +1 @@
uid://dhdnbucgojrv6

View File

@@ -1 +1 @@
extends Node2D extends AbstractBody

View File

@@ -1,6 +1,6 @@
[gd_scene format=3 uid="uid://o2egm85y3wul"] [gd_scene format=3 uid="uid://o2egm85y3wul"]
[ext_resource type="Script" path="res://Experiments/Recuration/Assets/TheMoon/TheMoon.gd" id="1_sr6fy"] [ext_resource type="Script" uid="uid://1c5nfdg2aud4" path="res://Experiments/Recuration/Assets/TheMoon/TheMoon.gd" id="1_sr6fy"]
[ext_resource type="Texture2D" uid="uid://dng410xo7qqfv" path="res://Core/Assets/PixelPlanets/a-moon.png" id="2_oy8k5"] [ext_resource type="Texture2D" uid="uid://dng410xo7qqfv" path="res://Core/Assets/PixelPlanets/a-moon.png" id="2_oy8k5"]
[node name="TheMoon" type="Node2D" unique_id=1994078602] [node name="TheMoon" type="Node2D" unique_id=1994078602]
@@ -10,28 +10,3 @@ script = ExtResource("1_sr6fy")
texture_filter = 1 texture_filter = 1
texture_repeat = 1 texture_repeat = 1
texture = ExtResource("2_oy8k5") texture = ExtResource("2_oy8k5")
[node name="Control" type="Control" parent="." unique_id=1752474701]
layout_mode = 3
anchors_preset = 0
offset_left = 20.0
offset_top = 20.0
offset_right = 20.0
offset_bottom = 20.0
[node name="VBoxContainer" type="VBoxContainer" parent="Control" unique_id=61689214]
layout_mode = 0
offset_right = 110.0
offset_bottom = 77.0
[node name="Label" type="Label" parent="Control/VBoxContainer" unique_id=1786036540]
layout_mode = 2
text = "Iron"
[node name="Label2" type="Label" parent="Control/VBoxContainer" unique_id=374559952]
layout_mode = 2
text = "Copper"
[node name="Label3" type="Label" parent="Control/VBoxContainer" unique_id=1739358724]
layout_mode = 2
text = "Copper"

View File

@@ -0,0 +1,10 @@
extends Node2D
class_name AbstractBody
func _enter_tree() -> void:
PlanetsSingelton.register(self)
func _exit_tree() -> void:
PlanetsSingelton.unregister(self)

View File

@@ -0,0 +1 @@
uid://ds7qei5roqphg

View File

@@ -2,7 +2,7 @@
importer="texture" importer="texture"
type="CompressedTexture2D" type="CompressedTexture2D"
uid="uid://pyvdyr3pes5o" uid="uid://81isstkmpvtx"
path="res://.godot/imported/Movement 2D.svg-4fa99617f74c694e4d2141eda40271bc.ctex" path="res://.godot/imported/Movement 2D.svg-4fa99617f74c694e4d2141eda40271bc.ctex"
metadata={ metadata={
"vram_texture": false "vram_texture": false

View File

@@ -1,7 +1,8 @@
[gd_scene format=3 uid="uid://cycayd4l7k7s4"] [gd_scene format=3 uid="uid://cycayd4l7k7s4"]
[ext_resource type="Script" path="res://Experiments/Recuration/Scripts/RecurionCamera.gd" id="1_002bs"] [ext_resource type="Script" uid="uid://bqslv86lm78ci" path="res://Experiments/Recuration/Scripts/RecurionCamera.gd" id="1_002bs"]
[ext_resource type="PackedScene" uid="uid://cbqapc1frbhtv" path="res://Experiments/Recuration/UI/UI.tscn" id="2_qgdyp"] [ext_resource type="PackedScene" uid="uid://cbqapc1frbhtv" path="res://Experiments/Recuration/UI/UI.tscn" id="2_qgdyp"]
[ext_resource type="Script" uid="uid://dhphpobeahiil" path="res://Experiments/Recuration/Scripts/CreatePlanet.gd" id="3_s7jin"]
[ext_resource type="PackedScene" uid="uid://o2egm85y3wul" path="res://Experiments/Recuration/Assets/TheMoon/TheMoon.tscn" id="3_yu4li"] [ext_resource type="PackedScene" uid="uid://o2egm85y3wul" path="res://Experiments/Recuration/Assets/TheMoon/TheMoon.tscn" id="3_yu4li"]
[node name="Recuration" type="Node2D" unique_id=1741828961] [node name="Recuration" type="Node2D" unique_id=1741828961]
@@ -13,5 +14,13 @@ metadata/_custom_type_script = "uid://bqslv86lm78ci"
[node name="Ui" parent="RecurionCamera" unique_id=1649292342 instance=ExtResource("2_qgdyp")] [node name="Ui" parent="RecurionCamera" unique_id=1649292342 instance=ExtResource("2_qgdyp")]
[node name="TheMoon" parent="." unique_id=1994078602 instance=ExtResource("3_yu4li")] [node name="CreatePlanet" type="Node" parent="RecurionCamera" unique_id=6331954]
script = ExtResource("3_s7jin")
planet = ExtResource("3_yu4li")
metadata/_custom_type_script = "uid://dhphpobeahiil"
[node name="TheMoon" parent="." unique_id=1994078602 groups=["Planets"] instance=ExtResource("3_yu4li")]
position = Vector2(-181, -79) position = Vector2(-181, -79)
[node name="TheMoon2" parent="." unique_id=826424265 groups=["Planets"] instance=ExtResource("3_yu4li")]
position = Vector2(115, -108)

View File

@@ -0,0 +1,15 @@
extends Node
class_name CreatePlanet
@export var planet: PackedScene
@onready var camera: Camera2D = get_parent()
func _input(event: InputEvent) -> void:
if (event is InputEventMouseButton):
if (event.button_mask == MOUSE_BUTTON_LEFT):
var planet_instance: Node2D = planet.instantiate()
var viewport_size = get_viewport().get_visible_rect().size / 2
planet_instance.position = event.position - viewport_size + camera.position
get_tree().root.add_child(planet_instance)

View File

@@ -0,0 +1 @@
uid://dhphpobeahiil

View File

@@ -1,6 +1,7 @@
[gd_scene format=3 uid="uid://cbqapc1frbhtv"] [gd_scene format=3 uid="uid://cbqapc1frbhtv"]
[ext_resource type="Script" path="res://Experiments/Recuration/UI/ui.gd" id="1_0oc4u"] [ext_resource type="Script" uid="uid://dslwh6krdrhb" path="res://Experiments/Recuration/UI/ui.gd" id="1_0oc4u"]
[ext_resource type="PackedScene" uid="uid://byb5pcvu3lixf" path="res://Experiments/Recuration/UI/planet_ui.tscn" id="2_7k02w"]
[node name="Ui" type="Control" unique_id=1649292342] [node name="Ui" type="Control" unique_id=1649292342]
layout_mode = 3 layout_mode = 3
@@ -10,3 +11,6 @@ anchor_bottom = 1.0
grow_horizontal = 2 grow_horizontal = 2
grow_vertical = 2 grow_vertical = 2
script = ExtResource("1_0oc4u") script = ExtResource("1_0oc4u")
[node name="PlanetUi" parent="." unique_id=1388932399 instance=ExtResource("2_7k02w")]
layout_mode = 1

View File

@@ -0,0 +1,17 @@
[gd_scene format=3 uid="uid://byb5pcvu3lixf"]
[node name="PlanetUi" type="Control" unique_id=1388932399]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="VBoxContainer" type="VBoxContainer" parent="." unique_id=1965327603]
layout_mode = 0
offset_right = 110.0
offset_bottom = 77.0
[node name="Test" type="Label" parent="VBoxContainer" unique_id=2044219282]
layout_mode = 2

View File

@@ -1,40 +0,0 @@
<mxfile host="Electron" agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/28.0.6 Chrome/138.0.7204.100 Electron/37.2.3 Safari/537.36" version="28.0.6">
<diagram name="Seite-1" id="8VUDw9VsU7XZE8zAJI22">
<mxGraphModel dx="575" dy="518" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="U4xH48hkQDtbZK23ePJW-3" value="2D Movement Drag Conept" style="shape=cube;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;darkOpacity=0.05;darkOpacity2=0.1;" vertex="1" parent="1">
<mxGeometry x="10" y="10" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="U4xH48hkQDtbZK23ePJW-4" value="When&lt;br&gt;Left Click + Hold" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="1">
<mxGeometry x="40" y="120" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="U4xH48hkQDtbZK23ePJW-5" value="Save Mouse Pos" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="160" y="130" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="U4xH48hkQDtbZK23ePJW-6" value="Movement of mouse" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" vertex="1" parent="1">
<mxGeometry x="40" y="250" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="U4xH48hkQDtbZK23ePJW-7" value="New Mouse pos - old pos = move postions" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="160" y="260" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="U4xH48hkQDtbZK23ePJW-8" value="" style="endArrow=classic;html=1;rounded=0;" edge="1" parent="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="440" y="210" as="sourcePoint" />
<mxPoint x="600" y="330" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="U4xH48hkQDtbZK23ePJW-10" value="Click&lt;br&gt;PosA" style="shape=callout;whiteSpace=wrap;html=1;perimeter=calloutPerimeter;" vertex="1" parent="1">
<mxGeometry x="380" y="130" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="U4xH48hkQDtbZK23ePJW-11" value="Click Move&lt;br&gt;PosB" style="shape=callout;whiteSpace=wrap;html=1;perimeter=calloutPerimeter;" vertex="1" parent="1">
<mxGeometry x="540" y="250" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="U4xH48hkQDtbZK23ePJW-12" value="Vector: 10x, -5y" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="540" y="130" width="120" height="60" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
</mxfile>

BIN
icon.icns Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 KiB

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

40
icon.png.import Normal file
View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://drtq05t1m0ad7"
path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://icon.png"
dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

248
icon.svg
View File

@@ -1 +1,247 @@
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128"><rect width="124" height="124" x="2" y="2" fill="#363d52" stroke="#212532" stroke-width="4" rx="14"/><g fill="#fff" transform="translate(12.322 12.322)scale(.101)"><path d="M105 673v33q407 354 814 0v-33z"/><path fill="#478cbf" d="m105 673 152 14q12 1 15 14l4 67 132 10 8-61q2-11 15-15h162q13 4 15 15l8 61 132-10 4-67q3-13 15-14l152-14V427q30-39 56-81-35-59-83-108-43 20-82 47-40-37-88-64 7-51 8-102-59-28-123-42-26 43-46 89-49-7-98 0-20-46-46-89-64 14-123 42 1 51 8 102-48 27-88 64-39-27-82-47-48 49-83 108 26 42 56 81zm0 33v39c0 276 813 276 814 0v-39l-134 12-5 69q-2 10-14 13l-162 11q-12 0-16-11l-10-65H446l-10 65q-4 11-16 11l-162-11q-12-3-14-13l-5-69z"/><path d="M483 600c0 34 58 34 58 0v-86c0-34-58-34-58 0z"/><circle cx="725" cy="526" r="90"/><circle cx="299" cy="526" r="90"/></g><g fill="#414042" transform="translate(12.322 12.322)scale(.101)"><circle cx="307" cy="532" r="60"/><circle cx="717" cy="532" r="60"/></g></svg> <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
width="100%"
viewBox="0 0 400 400"
version="1.1"
id="svg17"
sodipodi:docname="icon.svg"
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs
id="defs17" />
<sodipodi:namedview
id="namedview17"
pagecolor="#ffffff"
bordercolor="#000000"
borderopacity="0.25"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:zoom="2.9375"
inkscape:cx="199.82979"
inkscape:cy="200"
inkscape:window-width="3440"
inkscape:window-height="1377"
inkscape:window-x="1912"
inkscape:window-y="-8"
inkscape:window-maximized="1"
inkscape:current-layer="svg17" />
<!-- Outer badge — square 1:1 -->
<rect
width="396"
height="396"
x="2"
y="2"
fill="#2b3148"
stroke="#181d2e"
stroke-width="4"
rx="20"
style="fill:rgb(43, 49, 72);stroke:rgb(24, 29, 46);color:rgb(255, 255, 255);stroke-width:4px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="rect1" />
<!-- Subtle inner glow border -->
<rect
width="372"
height="372"
x="14"
y="14"
fill="none"
stroke="#3a4460"
stroke-width="1"
rx="14"
style="fill:none;stroke:rgb(58, 68, 96);color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="rect2" />
<!-- Top label: CATTLE GAMES -->
<text
x="200"
y="46"
font-family="sans-serif"
font-size="13"
font-weight="700"
fill="#7a8eb0"
letter-spacing="4"
text-anchor="middle"
style="fill:rgb(122, 142, 176);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:sans-serif;font-size:13px;font-weight:700;text-anchor:middle;dominant-baseline:auto"
id="text2">CATTLE
GAMES</text>
<!-- Godot robot — centered, large -->
<g
transform="translate(200,195) scale(0.155)"
style="fill:rgb(0, 0, 0);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="g9">
<g
transform="translate(-512,-512)"
style="fill:rgb(0, 0, 0);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="g8">
<g
fill="#fff"
style="fill:rgb(255, 255, 255);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="g5">
<path
d="M105 673v33q407 354 814 0v-33z"
style="fill:rgb(255, 255, 255);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="path2" />
<path
fill="#478cbf"
d="m105 673 152 14q12 1 15 14l4 67 132 10 8-61q2-11 15-15h162q13 4 15 15l8 61 132-10 4-67q3-13 15-14l152-14V427q30-39 56-81-35-59-83-108-43 20-82 47-40-37-88-64 7-51 8-102-59-28-123-42-26 43-46 89-49-7-98 0-20-46-46-89-64 14-123 42 1 51 8 102-48 27-88 64-39-27-82-47-48 49-83 108 26 42 56 81zm0 33v39c0 276 813 276 814 0v-39l-134 12-5 69q-2 10-14 13l-162 11q-12 0-16-11l-10-65H446l-10 65q-4 11-16 11l-162-11q-12-3-14-13l-5-69z"
style="fill:rgb(71, 140, 191);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="path3" />
<path
d="M483 600c0 34 58 34 58 0v-86c0-34-58-34-58 0z"
style="fill:rgb(255, 255, 255);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="path4" />
<circle
cx="725"
cy="526"
r="90"
style="fill:rgb(255, 255, 255);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="circle4" />
<circle
cx="299"
cy="526"
r="90"
style="fill:rgb(255, 255, 255);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="circle5" />
</g>
<g
fill="#2b2d3a"
style="fill:rgb(43, 45, 58);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="g7">
<circle
cx="307"
cy="532"
r="60"
style="fill:rgb(43, 45, 58);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="circle6" />
<circle
cx="717"
cy="532"
r="60"
style="fill:rgb(43, 45, 58);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="circle7" />
</g>
</g>
</g>
<!-- Horizontal divider above bottom section -->
<line
x1="30"
y1="300"
x2="370"
y2="300"
stroke="#3a4460"
stroke-width="1"
style="fill:rgb(0, 0, 0);stroke:rgb(58, 68, 96);color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="line9" />
<!-- Bottom section: two columns -->
<!-- Left: Powered by Godot -->
<text
x="40"
y="325"
font-family="sans-serif"
font-size="9"
fill="#5a6a8a"
letter-spacing="1.5"
style="fill:rgb(90, 106, 138);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:sans-serif;font-size:9px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="text9">POWERED
BY</text>
<text
x="40"
y="346"
font-family="sans-serif"
font-size="17"
font-weight="700"
fill="#478cbf"
style="fill:rgb(71, 140, 191);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:sans-serif;font-size:17px;font-weight:700;text-anchor:start;dominant-baseline:auto"
id="text10">Godot
Engine</text>
<!-- Vertical divider -->
<line
x1="215"
y1="308"
x2="215"
y2="372"
stroke="#3a4460"
stroke-width="1"
style="fill:rgb(0, 0, 0);stroke:rgb(58, 68, 96);color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="line10" />
<!-- Right: Experimental Port badge -->
<text
x="232"
y="325"
font-family="sans-serif"
font-size="9"
fill="#5a6a8a"
letter-spacing="1.5"
style="fill:rgb(90, 106, 138);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:sans-serif;font-size:9px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="text11">RELEASE
TYPE</text>
<!-- Warning triangle -->
<polygon
points="232,355 240,341 248,355"
fill="#e8922a"
style="fill:rgb(232, 146, 42);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="polygon11" />
<text
x="240"
y="353"
font-family="sans-serif"
font-size="7.5"
font-weight="700"
fill="#2b3148"
text-anchor="middle"
dominant-baseline="central"
style="fill:rgb(43, 49, 72);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:sans-serif;font-size:7.5px;font-weight:700;text-anchor:middle;dominant-baseline:central"
id="text12">
!</text>
<text
x="253"
y="350"
font-family="sans-serif"
font-size="13"
font-weight="700"
fill="#e8922a"
style="fill:rgb(232, 146, 42);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:sans-serif;font-size:13px;font-weight:700;text-anchor:start;dominant-baseline:auto"
id="text13">
Experimental</text>
<text
x="253"
y="366"
font-family="sans-serif"
font-size="11"
fill="#8a9ab8"
style="fill:rgb(138, 154, 184);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:sans-serif;font-size:11px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="text14">
Port</text>
<!-- Corner accent dots -->
<circle
cx="30"
cy="30"
r="3"
fill="#3a4460"
style="fill:rgb(58, 68, 96);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="circle14" />
<circle
cx="370"
cy="30"
r="3"
fill="#3a4460"
style="fill:rgb(58, 68, 96);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="circle15" />
<circle
cx="30"
cy="370"
r="3"
fill="#3a4460"
style="fill:rgb(58, 68, 96);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="circle16" />
<circle
cx="370"
cy="370"
r="3"
fill="#3a4460"
style="fill:rgb(58, 68, 96);stroke:none;color:rgb(255, 255, 255);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;opacity:1;font-family:&quot;Anthropic Sans&quot;, -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, sans-serif;font-size:16px;font-weight:400;text-anchor:start;dominant-baseline:auto"
id="circle17" />
</svg>

Before

Width:  |  Height:  |  Size: 994 B

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -18,6 +18,8 @@ dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.cte
compress/mode=0 compress/mode=0
compress/high_quality=false compress/high_quality=false
compress/lossy_quality=0.7 compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1 compress/hdr_compression=1
compress/normal_map=0 compress/normal_map=0
compress/channel_pack=0 compress/channel_pack=0
@@ -25,6 +27,10 @@ mipmaps/generate=false
mipmaps/limit=-1 mipmaps/limit=-1
roughness/mode=0 roughness/mode=0
roughness/src_normal="" roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true process/fix_alpha_border=true
process/premult_alpha=false process/premult_alpha=false
process/normal_map_invert_y=false process/normal_map_invert_y=false

BIN
icon64.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

40
icon64.png.import Normal file
View File

@@ -0,0 +1,40 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://d1ieguyv5p6dl"
path="res://.godot/imported/icon64.png-f4672868cbaa6807127d37497d35a629.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://icon64.png"
dest_files=["res://.godot/imported/icon64.png-f4672868cbaa6807127d37497d35a629.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/uastc_level=0
compress/rdo_quality_loss=0.0
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/channel_remap/red=0
process/channel_remap/green=1
process/channel_remap/blue=2
process/channel_remap/alpha=3
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1

View File

@@ -1,10 +1,10 @@
[gd_scene format=3 uid="uid://djelupqdj4wgd"] [gd_scene format=3 uid="uid://djelupqdj4wgd"]
[ext_resource type="Script" path="res://Core/Components/open_level_component.gd" id="1_ig7tw"] [ext_resource type="Script" uid="uid://bel5yfuiqithe" path="res://Core/Components/open_level_component.gd" id="1_ig7tw"]
[ext_resource type="PackedScene" uid="uid://dgst4apmowe53" path="res://Experiments/SpaceMove/Scenes/space_test.tscn" id="2_1bvp3"] [ext_resource type="PackedScene" uid="uid://dgst4apmowe53" path="res://Experiments/SpaceMove/Scenes/space_test.tscn" id="2_1bvp3"]
[ext_resource type="PackedScene" uid="uid://caj5t8q1fii5m" path="res://Experiments/PidTest/Scenes/pid_test.tscn" id="4_7mycd"] [ext_resource type="PackedScene" uid="uid://caj5t8q1fii5m" path="res://Experiments/PidTest/Scenes/pid_test.tscn" id="4_7mycd"]
[ext_resource type="PackedScene" uid="uid://cycayd4l7k7s4" path="res://Experiments/Recuration/Scenes/Recuration.tscn" id="5_lquwl"] [ext_resource type="PackedScene" uid="uid://cycayd4l7k7s4" path="res://Experiments/Recuration/Scenes/Recuration.tscn" id="5_lquwl"]
[ext_resource type="Script" path="res://Core/Components/quit_game_component.gd" id="6_7mycd"] [ext_resource type="Script" uid="uid://lh1hhx4q8nlu" path="res://Core/Components/quit_game_component.gd" id="6_7mycd"]
[sub_resource type="PackedScene" id="PackedScene_lquwl"] [sub_resource type="PackedScene" id="PackedScene_lquwl"]
_bundled = { _bundled = {

View File

@@ -18,7 +18,14 @@ config/name="Experements"
run/main_scene="uid://djelupqdj4wgd" run/main_scene="uid://djelupqdj4wgd"
config/features=PackedStringArray("4.6", "Forward Plus") config/features=PackedStringArray("4.6", "Forward Plus")
boot_splash/bg_color=Color(0, 0, 0, 1) boot_splash/bg_color=Color(0, 0, 0, 1)
config/icon="res://icon.svg" config/icon="uid://drtq05t1m0ad7"
config/macos_native_icon="res://icon.icns"
config/windows_native_icon="res://icon.ico"
[autoload]
BackToMain="*uid://c6n4axv3eoguq"
PlanetsSingelton="*uid://dhdnbucgojrv6"
[filesystem] [filesystem]