feat(recuration): craeted test with singelotsn and spawinin planets
This commit is contained in:
@@ -1 +1 @@
|
||||
extends Node2D
|
||||
extends AbstractBody
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[gd_scene format=3 uid="uid://o2egm85y3wul"]
|
||||
|
||||
,[ext_resource type="Script" uid="uid://1c5nfdg2aud4" 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"]
|
||||
|
||||
[node name="TheMoon" type="Node2D" unique_id=1994078602]
|
||||
|
||||
10
Experiments/Recuration/Assets/abstract_body.gd
Normal file
10
Experiments/Recuration/Assets/abstract_body.gd
Normal file
@@ -0,0 +1,10 @@
|
||||
extends Node2D
|
||||
|
||||
class_name AbstractBody
|
||||
|
||||
func _enter_tree() -> void:
|
||||
PlanetsSingelton.register(self)
|
||||
|
||||
|
||||
func _exit_tree() -> void:
|
||||
PlanetsSingelton.unregister(self)
|
||||
1
Experiments/Recuration/Assets/abstract_body.gd.uid
Normal file
1
Experiments/Recuration/Assets/abstract_body.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://ds7qei5roqphg
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
[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="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"]
|
||||
|
||||
[node name="Recuration" type="Node2D" unique_id=1741828961]
|
||||
@@ -13,7 +14,13 @@ metadata/_custom_type_script = "uid://bqslv86lm78ci"
|
||||
|
||||
[node name="Ui" parent="RecurionCamera" unique_id=1649292342 instance=ExtResource("2_qgdyp")]
|
||||
|
||||
[node name="Planets" type="Node" parent="." unique_id=1303454429]
|
||||
[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="Planets" unique_id=1994078602 instance=ExtResource("3_yu4li")]
|
||||
[node name="TheMoon" parent="." unique_id=1994078602 groups=["Planets"] instance=ExtResource("3_yu4li")]
|
||||
position = Vector2(-181, -79)
|
||||
|
||||
[node name="TheMoon2" parent="." unique_id=826424265 groups=["Planets"] instance=ExtResource("3_yu4li")]
|
||||
position = Vector2(115, -108)
|
||||
|
||||
15
Experiments/Recuration/Scripts/CreatePlanet.gd
Normal file
15
Experiments/Recuration/Scripts/CreatePlanet.gd
Normal 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)
|
||||
1
Experiments/Recuration/Scripts/CreatePlanet.gd.uid
Normal file
1
Experiments/Recuration/Scripts/CreatePlanet.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://dhphpobeahiil
|
||||
@@ -1,6 +1,7 @@
|
||||
[gd_scene format=3 uid="uid://cbqapc1frbhtv"]
|
||||
|
||||
[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]
|
||||
layout_mode = 3
|
||||
@@ -11,26 +12,5 @@ grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
script = ExtResource("1_0oc4u")
|
||||
|
||||
[node name="Control" type="Control" parent="." unique_id=1092984868]
|
||||
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=2035222213]
|
||||
layout_mode = 0
|
||||
offset_right = 110.0
|
||||
offset_bottom = 77.0
|
||||
|
||||
[node name="Label" type="Label" parent="Control/VBoxContainer" unique_id=1466923284]
|
||||
layout_mode = 2
|
||||
text = "Iron"
|
||||
|
||||
[node name="Label2" type="Label" parent="Control/VBoxContainer" unique_id=2128104556]
|
||||
layout_mode = 2
|
||||
text = "Copper"
|
||||
|
||||
[node name="Label3" type="Label" parent="Control/VBoxContainer" unique_id=749357655]
|
||||
layout_mode = 2
|
||||
text = "Copper"
|
||||
[node name="PlanetUi" parent="." unique_id=1388932399 instance=ExtResource("2_7k02w")]
|
||||
layout_mode = 1
|
||||
|
||||
17
Experiments/Recuration/UI/planet_ui.tscn
Normal file
17
Experiments/Recuration/UI/planet_ui.tscn
Normal 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
|
||||
Reference in New Issue
Block a user