Browse Source

:wrench: Create project skeleton

DricomDragon 2 years ago
parent
commit
70c851d090

+ 6 - 0
godot/project.godot

@@ -11,9 +11,15 @@ config_version=5
 [application]
 
 config/name="WaitingGodotSpeech"
+run/main_scene="res://slides/1/world.tscn"
 config/features=PackedStringArray("4.0", "Forward Plus")
 config/icon="res://icon.svg"
 
+[display]
+
+window/size/viewport_width=1920
+window/size/viewport_height=1080
+
 [rendering]
 
 environment/defaults/default_clear_color=Color(1, 1, 1, 1)

+ 13 - 0
godot/projector/focus/Focus.gd

@@ -0,0 +1,13 @@
+class_name Focus
+extends Camera2D
+# Transition to next slide and focus current slide
+
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+	pass # Replace with function body.
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(delta):
+	pass

+ 3 - 0
godot/projector/focus/Focus.tscn

@@ -0,0 +1,3 @@
+[gd_scene format=3 uid="uid://sbiog6jvwox8"]
+
+[node name="Camera" type="Node2D"]

+ 13 - 0
godot/projector/show/Show.gd

@@ -0,0 +1,13 @@
+class_name Show
+extends Node2D
+# Manage slide cycling
+
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+	pass # Replace with function body.
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(delta):
+	pass

+ 3 - 0
godot/projector/show/Show.tscn

@@ -0,0 +1,3 @@
+[gd_scene format=3 uid="uid://crehjmq6aqjai"]
+
+[node name="Show" type="Node2D"]

+ 13 - 0
godot/projector/slide/Slide.gd

@@ -0,0 +1,13 @@
+class_name Slide
+extends Node2D
+# Display slide content
+
+
+# Called when the node enters the scene tree for the first time.
+func _ready():
+	pass # Replace with function body.
+
+
+# Called every frame. 'delta' is the elapsed time since the previous frame.
+func _process(delta):
+	pass

+ 6 - 0
godot/projector/slide/Slide.tscn

@@ -0,0 +1,6 @@
+[gd_scene load_steps=2 format=3 uid="uid://jan5nscgka4"]
+
+[ext_resource type="Script" path="res://projector/slide/Slide.gd" id="1_3sfd8"]
+
+[node name="Slide" type="Node2D"]
+script = ExtResource("1_3sfd8")

+ 16 - 1
godot/run/root.tscn

@@ -1,3 +1,18 @@
-[gd_scene format=3 uid="uid://bbycil1hoewt5"]
+[gd_scene load_steps=5 format=3 uid="uid://bbycil1hoewt5"]
+
+[ext_resource type="PackedScene" uid="uid://sbiog6jvwox8" path="res://projector/focus/Focus.tscn" id="1_a17yu"]
+[ext_resource type="PackedScene" uid="uid://crehjmq6aqjai" path="res://projector/show/Show.tscn" id="2_cih7e"]
+[ext_resource type="PackedScene" uid="uid://c0yx4skvvx7ek" path="res://slides/1/world.tscn" id="3_s3lgd"]
+[ext_resource type="PackedScene" uid="uid://dvd46tb14vm33" path="res://slides/2/me.tscn" id="4_uqvn6"]
 
 [node name="Root" type="Node"]
+
+[node name="Board" type="Node2D" parent="."]
+
+[node name="Camera" parent="Board" instance=ExtResource("1_a17yu")]
+
+[node name="Show" parent="Board" instance=ExtResource("2_cih7e")]
+
+[node name="World" parent="Board/Show" instance=ExtResource("3_s3lgd")]
+
+[node name="Me" parent="Board/Show" instance=ExtResource("4_uqvn6")]

+ 11 - 0
godot/slides/1/world.tscn

@@ -0,0 +1,11 @@
+[gd_scene load_steps=2 format=3 uid="uid://c0yx4skvvx7ek"]
+
+[ext_resource type="Script" path="res://projector/slide/Slide.gd" id="1_eacqu"]
+
+[node name="World" type="Node2D"]
+script = ExtResource("1_eacqu")
+
+[node name="Label" type="Label" parent="."]
+offset_right = 305.0
+offset_bottom = 23.0
+text = "Hello"

+ 6 - 0
godot/slides/2/me.tscn

@@ -0,0 +1,6 @@
+[gd_scene load_steps=2 format=3 uid="uid://dvd46tb14vm33"]
+
+[ext_resource type="Script" path="res://projector/slide/Slide.gd" id="1_62ce0"]
+
+[node name="Me" type="Node2D"]
+script = ExtResource("1_62ce0")