Kaynağa Gözat

:tada: Create a basic example

DricomDragon 2 yıl önce
ebeveyn
işleme
49db1c6d71

+ 29 - 0
godot/example/example_slide_show.tscn

@@ -0,0 +1,29 @@
+[gd_scene load_steps=6 format=3 uid="uid://8jvafwesokrx"]
+
+[ext_resource type="Script" path="res://addons/slide_show/projector/focus/Focus.gd" id="1_2ck0l"]
+[ext_resource type="Script" path="res://addons/slide_show/projector/show/Show.gd" id="2_y8xdx"]
+[ext_resource type="PackedScene" uid="uid://bs1nyjde3oghi" path="res://example/slides/1MainTitle.tscn" id="3_d02bq"]
+[ext_resource type="PackedScene" uid="uid://fv16fxt420pa" path="res://example/slides/2Explain.tscn" id="4_bt0ir"]
+[ext_resource type="PackedScene" uid="uid://bgleyjsx2qhus" path="res://example/slides/3Cool.tscn" id="5_h5p25"]
+
+[node name="ExampleSlideShow" type="Node2D"]
+
+[node name="Focus" type="Camera2D" parent="."]
+script = ExtResource("1_2ck0l")
+
+[node name="Show" type="Node2D" parent="."]
+script = ExtResource("2_y8xdx")
+hide_slides = true
+
+[node name="1MainTitle" parent="Show" instance=ExtResource("3_d02bq")]
+
+[node name="2Explain" parent="Show" instance=ExtResource("4_bt0ir")]
+position = Vector2(859, -33)
+scale = Vector2(0.8, 0.8)
+
+[node name="3Cool" parent="Show" instance=ExtResource("5_h5p25")]
+position = Vector2(451, 486)
+scale = Vector2(0.2, 0.2)
+always_visible = true
+
+[connection signal="new_focus" from="Show" to="Focus" method="_on_show_new_focus"]

+ 16 - 0
godot/example/slides/1MainTitle.tscn

@@ -0,0 +1,16 @@
+[gd_scene load_steps=2 format=3 uid="uid://bs1nyjde3oghi"]
+
+[ext_resource type="Script" path="res://addons/slide_show/projector/slide/Slide.gd" id="1_f7yng"]
+
+[node name="1MainTitle" type="Node2D"]
+script = ExtResource("1_f7yng")
+
+[node name="Label" type="Label" parent="."]
+offset_left = 101.0
+offset_top = 148.0
+offset_right = 1006.0
+offset_bottom = 542.0
+theme_override_font_sizes/font_size = 142
+text = "Hello GD
+Slide Show"
+horizontal_alignment = 1

+ 20 - 0
godot/example/slides/2Explain.tscn

@@ -0,0 +1,20 @@
+[gd_scene load_steps=2 format=3 uid="uid://fv16fxt420pa"]
+
+[ext_resource type="Script" path="res://addons/slide_show/projector/slide/Slide.gd" id="1_7dhkj"]
+
+[node name="2Explain" type="Node2D"]
+script = ExtResource("1_7dhkj")
+
+[node name="Label" type="Label" parent="."]
+offset_left = 76.0
+offset_top = 145.0
+offset_right = 1086.0
+offset_bottom = 539.0
+theme_override_font_sizes/font_size = 42
+text = "1. Import the plugin
+2. Create your main scene
+3. Instantiate a Focus
+4. Instantiate a Show and link its signal to the Focus
+5. Create your own Slides by creating Scene based 
+on Slide node
+6. Instantiate your slides as children of Show"

+ 16 - 0
godot/example/slides/3Cool.tscn

@@ -0,0 +1,16 @@
+[gd_scene load_steps=2 format=3 uid="uid://bgleyjsx2qhus"]
+
+[ext_resource type="Script" path="res://addons/slide_show/projector/slide/Slide.gd" id="1_t1lrj"]
+
+[node name="3Cool" type="Node2D"]
+script = ExtResource("1_t1lrj")
+
+[node name="Label" type="Label" parent="."]
+offset_left = 101.0
+offset_top = 148.0
+offset_right = 1006.0
+offset_bottom = 542.0
+theme_override_font_sizes/font_size = 142
+text = "That's
+cool!"
+horizontal_alignment = 1

+ 1 - 0
godot/project.godot

@@ -11,6 +11,7 @@ config_version=5
 [application]
 
 config/name="Godot Slide Show Plugin"
+run/main_scene="res://example/example_slide_show.tscn"
 config/features=PackedStringArray("4.0", "GL Compatibility")
 config/icon="res://icon.svg"