Lesson Completed
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"]
|
||||
|
||||
|
||||
@@ -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")
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user