diff --git a/Loops/Scenes/Loops.tscn b/Loops/Scenes/Loops.tscn index 1b1c44f..6ececec 100644 --- a/Loops/Scenes/Loops.tscn +++ b/Loops/Scenes/Loops.tscn @@ -1,9 +1,9 @@ -[gd_scene load_steps=3 format=3 uid="uid://ca4ilsycpp4su"] +[gd_scene load_steps=2 format=3 uid="uid://ca4ilsycpp4su"] [ext_resource type="Script" uid="uid://cag5s4yohpx7r" path="res://Loops/Scripts/Loops.gd" id="1_18ujs"] -[ext_resource type="PackedScene" uid="uid://dkqrjahyouim0" path="res://Loops/Scenes/Star.tscn" id="2_jwddc"] [node name="Main" type="Node2D"] script = ExtResource("1_18ujs") -[node name="Star" parent="." instance=ExtResource("2_jwddc")] +[node name="Camera2D" type="Camera2D" parent="."] +zoom = Vector2(2, 2) diff --git a/Loops/Scripts/Loops.gd b/Loops/Scripts/Loops.gd index b933e7f..237ffa0 100644 --- a/Loops/Scripts/Loops.gd +++ b/Loops/Scripts/Loops.gd @@ -1,6 +1,17 @@ extends Node2D -#NEXT This is where we are editing right now + +@export var spawn_count : int = 200 +var star_scene = preload("res://Loops/Scenes/Star.tscn") # Called when the node enters the scene tree for the first time. func _ready(): - pass + for i in spawn_count: + var star = star_scene.instantiate() + add_child(star) + + star.position.x = randi_range(-280, 280) + star.position.y = randi_range(-150, 150) + + var star_size = randf_range(0.5, 1.0) + star.scale.x = star_size + star.scale.y = star_size diff --git a/Physics/Scenes/Crate.tscn b/Physics/Scenes/Crate.tscn index e6a2be2..a1089ee 100644 --- a/Physics/Scenes/Crate.tscn +++ b/Physics/Scenes/Crate.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=3 format=3 uid="uid://dmsornuuqyfhd"] -[ext_resource type="Texture2D" uid="uid://kekglgglqd17" path="res://Physics/Crate.png" id="1_72488"] +[ext_resource type="Texture2D" uid="uid://kekglgglqd17" path="res://Physics/Assets/Crate.png" id="1_72488"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_hfrgb"] size = Vector2(18, 18) diff --git a/Physics/Scenes/Physics.tscn b/Physics/Scenes/Physics.tscn index e8f036f..272a01c 100644 --- a/Physics/Scenes/Physics.tscn +++ b/Physics/Scenes/Physics.tscn @@ -1,8 +1,8 @@ [gd_scene load_steps=5 format=3 uid="uid://ynpyx1a6qtoq"] -[ext_resource type="Texture2D" uid="uid://fxeb0j820f47" path="res://Physics/PhysicsCharacter.png" id="1_8qjul"] -[ext_resource type="Script" uid="uid://c5pwbg75g5n8q" path="res://Physics/PhysicsPlayer.gd" id="1_ry666"] -[ext_resource type="PackedScene" uid="uid://dmsornuuqyfhd" path="res://Physics/Crate.tscn" id="3_eghp1"] +[ext_resource type="Texture2D" uid="uid://fxeb0j820f47" path="res://Physics/Assets/PhysicsCharacter.png" id="1_8qjul"] +[ext_resource type="Script" uid="uid://c5pwbg75g5n8q" path="res://Physics/Scripts/PhysicsPlayer.gd" id="1_ry666"] +[ext_resource type="PackedScene" uid="uid://dmsornuuqyfhd" path="res://Physics/Scenes/Crate.tscn" id="3_eghp1"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_8qjul"] size = Vector2(18, 18) diff --git a/addons/Todo_Manager/UI/ColourPicker.tscn b/addons/Todo_Manager/UI/ColourPicker.tscn index 09850df..ebd24cb 100644 --- a/addons/Todo_Manager/UI/ColourPicker.tscn +++ b/addons/Todo_Manager/UI/ColourPicker.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=3 uid="uid://bie1xn8v1kd66"] -[ext_resource type="Script" uid="uid://ciy7u3difbg4l" path="res://Addons/Todo_Manager/ColourPicker.gd" id="1"] +[ext_resource type="Script" uid="uid://ciy7u3difbg4l" path="res://addons/Todo_Manager/ColourPicker.gd" id="1"] [node name="TODOColour" type="HBoxContainer"] offset_right = 105.0 diff --git a/addons/Todo_Manager/UI/Dock.tscn b/addons/Todo_Manager/UI/Dock.tscn index 7fa27bc..687b2b7 100644 --- a/addons/Todo_Manager/UI/Dock.tscn +++ b/addons/Todo_Manager/UI/Dock.tscn @@ -1,8 +1,8 @@ [gd_scene load_steps=6 format=3 uid="uid://b6k0dtftankcx"] -[ext_resource type="Script" uid="uid://pq4ddvki3jnc" path="res://Addons/Todo_Manager/Dock.gd" id="1"] -[ext_resource type="Script" uid="uid://bo8rothyfqqk0" path="res://Addons/Todo_Manager/Project.gd" id="2"] -[ext_resource type="Script" uid="uid://o26fpqhak4e7" path="res://Addons/Todo_Manager/Current.gd" id="3"] +[ext_resource type="Script" uid="uid://pq4ddvki3jnc" path="res://addons/Todo_Manager/Dock.gd" id="1"] +[ext_resource type="Script" uid="uid://bo8rothyfqqk0" path="res://addons/Todo_Manager/Project.gd" id="2"] +[ext_resource type="Script" uid="uid://o26fpqhak4e7" path="res://addons/Todo_Manager/Current.gd" id="3"] [sub_resource type="ButtonGroup" id="ButtonGroup_kqxcu"] diff --git a/addons/Todo_Manager/UI/Pattern.tscn b/addons/Todo_Manager/UI/Pattern.tscn index 84aeb4b..8df2201 100644 --- a/addons/Todo_Manager/UI/Pattern.tscn +++ b/addons/Todo_Manager/UI/Pattern.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=3 uid="uid://bx11sel2q5wli"] -[ext_resource type="Script" uid="uid://bq7l83gnjuh1b" path="res://Addons/Todo_Manager/Pattern.gd" id="1"] +[ext_resource type="Script" uid="uid://bq7l83gnjuh1b" path="res://addons/Todo_Manager/Pattern.gd" id="1"] [node name="Pattern" type="HBoxContainer"] script = ExtResource("1") diff --git a/addons/Todo_Manager/doc/images/Instruct1.png.import b/addons/Todo_Manager/doc/images/Instruct1.png.import index 9795aa0..77a9a2a 100644 --- a/addons/Todo_Manager/doc/images/Instruct1.png.import +++ b/addons/Todo_Manager/doc/images/Instruct1.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c62nixytt8ktg" -path="res://.godot/imported/Instruct1.png-7c1b433fff5372b7849572019c810815.ctex" +path="res://.godot/imported/Instruct1.png-698c6faa3ef3ac4960807faa3e028bd6.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://Addons/Todo_Manager/doc/images/Instruct1.png" -dest_files=["res://.godot/imported/Instruct1.png-7c1b433fff5372b7849572019c810815.ctex"] +source_file="res://addons/Todo_Manager/doc/images/Instruct1.png" +dest_files=["res://.godot/imported/Instruct1.png-698c6faa3ef3ac4960807faa3e028bd6.ctex"] [params] diff --git a/addons/Todo_Manager/doc/images/Instruct2.png.import b/addons/Todo_Manager/doc/images/Instruct2.png.import index 34741d7..bd8ea60 100644 --- a/addons/Todo_Manager/doc/images/Instruct2.png.import +++ b/addons/Todo_Manager/doc/images/Instruct2.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://do8gas8ky1f0w" -path="res://.godot/imported/Instruct2.png-b5939987800018deeac705977d54737b.ctex" +path="res://.godot/imported/Instruct2.png-4e8664e49d00a397bbd539f7dee976ff.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://Addons/Todo_Manager/doc/images/Instruct2.png" -dest_files=["res://.godot/imported/Instruct2.png-b5939987800018deeac705977d54737b.ctex"] +source_file="res://addons/Todo_Manager/doc/images/Instruct2.png" +dest_files=["res://.godot/imported/Instruct2.png-4e8664e49d00a397bbd539f7dee976ff.ctex"] [params] diff --git a/addons/Todo_Manager/doc/images/Instruct3.png.import b/addons/Todo_Manager/doc/images/Instruct3.png.import index b590ecd..a34a73c 100644 --- a/addons/Todo_Manager/doc/images/Instruct3.png.import +++ b/addons/Todo_Manager/doc/images/Instruct3.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://w1pqsoc78kvw" -path="res://.godot/imported/Instruct3.png-9a611c9493693e21554bc8cba4df7782.ctex" +path="res://.godot/imported/Instruct3.png-3cc62ed99bf29d90b803cb8eb40881e9.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://Addons/Todo_Manager/doc/images/Instruct3.png" -dest_files=["res://.godot/imported/Instruct3.png-9a611c9493693e21554bc8cba4df7782.ctex"] +source_file="res://addons/Todo_Manager/doc/images/Instruct3.png" +dest_files=["res://.godot/imported/Instruct3.png-3cc62ed99bf29d90b803cb8eb40881e9.ctex"] [params] diff --git a/addons/Todo_Manager/doc/images/Instruct4.png.import b/addons/Todo_Manager/doc/images/Instruct4.png.import index eb93d5c..6219fdb 100644 --- a/addons/Todo_Manager/doc/images/Instruct4.png.import +++ b/addons/Todo_Manager/doc/images/Instruct4.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dikcjee6ddfbi" -path="res://.godot/imported/Instruct4.png-dc2ad4813e44a9bba7f3a6a491a59a12.ctex" +path="res://.godot/imported/Instruct4.png-bf5aa1cffc066175cecf9281b0774809.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://Addons/Todo_Manager/doc/images/Instruct4.png" -dest_files=["res://.godot/imported/Instruct4.png-dc2ad4813e44a9bba7f3a6a491a59a12.ctex"] +source_file="res://addons/Todo_Manager/doc/images/Instruct4.png" +dest_files=["res://.godot/imported/Instruct4.png-bf5aa1cffc066175cecf9281b0774809.ctex"] [params] diff --git a/addons/Todo_Manager/doc/images/Instruct5.png.import b/addons/Todo_Manager/doc/images/Instruct5.png.import index 4797599..0b5904a 100644 --- a/addons/Todo_Manager/doc/images/Instruct5.png.import +++ b/addons/Todo_Manager/doc/images/Instruct5.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://c8cknccx8n5f5" -path="res://.godot/imported/Instruct5.png-fbb097d06cb9aefb4a33978a0526ef31.ctex" +path="res://.godot/imported/Instruct5.png-001538ed8b5682dcf232de08035aab38.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://Addons/Todo_Manager/doc/images/Instruct5.png" -dest_files=["res://.godot/imported/Instruct5.png-fbb097d06cb9aefb4a33978a0526ef31.ctex"] +source_file="res://addons/Todo_Manager/doc/images/Instruct5.png" +dest_files=["res://.godot/imported/Instruct5.png-001538ed8b5682dcf232de08035aab38.ctex"] [params] diff --git a/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png.import b/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png.import index f6800b1..2282ac0 100644 --- a/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png.import +++ b/addons/Todo_Manager/doc/images/TODO_Manager_Logo.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://xr2aa04qg3tp" -path="res://.godot/imported/TODO_Manager_Logo.png-ebcafa7d3da2b26e6cd7fc5e03951f15.ctex" +path="res://.godot/imported/TODO_Manager_Logo.png-e07d7ec75201c66b732ef87ec1bece15.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://Addons/Todo_Manager/doc/images/TODO_Manager_Logo.png" -dest_files=["res://.godot/imported/TODO_Manager_Logo.png-ebcafa7d3da2b26e6cd7fc5e03951f15.ctex"] +source_file="res://addons/Todo_Manager/doc/images/TODO_Manager_Logo.png" +dest_files=["res://.godot/imported/TODO_Manager_Logo.png-e07d7ec75201c66b732ef87ec1bece15.ctex"] [params] diff --git a/addons/Todo_Manager/doc/images/example1.png.import b/addons/Todo_Manager/doc/images/example1.png.import index f2de0b2..a3c767f 100644 --- a/addons/Todo_Manager/doc/images/example1.png.import +++ b/addons/Todo_Manager/doc/images/example1.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://dm4238rk6sken" -path="res://.godot/imported/example1.png-6db1e3470ed3eac2ca37cca9e582ebf6.ctex" +path="res://.godot/imported/example1.png-6386c332ca46e1e62ea061b956a901cd.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://Addons/Todo_Manager/doc/images/example1.png" -dest_files=["res://.godot/imported/example1.png-6db1e3470ed3eac2ca37cca9e582ebf6.ctex"] +source_file="res://addons/Todo_Manager/doc/images/example1.png" +dest_files=["res://.godot/imported/example1.png-6386c332ca46e1e62ea061b956a901cd.ctex"] [params] diff --git a/addons/Todo_Manager/doc/images/example2.png.import b/addons/Todo_Manager/doc/images/example2.png.import index 3e47df6..f64d608 100644 --- a/addons/Todo_Manager/doc/images/example2.png.import +++ b/addons/Todo_Manager/doc/images/example2.png.import @@ -3,15 +3,15 @@ importer="texture" type="CompressedTexture2D" uid="uid://b6ovpc52txvtv" -path="res://.godot/imported/example2.png-0046857a3339eb746a7eaf4a95276eba.ctex" +path="res://.godot/imported/example2.png-2e3a8f9cd1e178daf22b83dc0513f37a.ctex" metadata={ "vram_texture": false } [deps] -source_file="res://Addons/Todo_Manager/doc/images/example2.png" -dest_files=["res://.godot/imported/example2.png-0046857a3339eb746a7eaf4a95276eba.ctex"] +source_file="res://addons/Todo_Manager/doc/images/example2.png" +dest_files=["res://.godot/imported/example2.png-2e3a8f9cd1e178daf22b83dc0513f37a.ctex"] [params]