adding all slides
This commit is contained in:
parent
44328e3a2d
commit
575eaa9b31
10 changed files with 310 additions and 110 deletions
|
|
@ -1,8 +1,9 @@
|
||||||
[gd_resource type="GradientTexture2D" load_steps=2 format=3 uid="uid://5girh8nk4p3f"]
|
[gd_resource type="GradientTexture2D" load_steps=2 format=3 uid="uid://5girh8nk4p3f"]
|
||||||
|
|
||||||
[sub_resource type="Gradient" id="Gradient_o7xwa"]
|
[sub_resource type="Gradient" id="Gradient_o7xwa"]
|
||||||
colors = PackedColorArray(0.46429, 0.00206019, 0.726487, 1, 0.305082, 0.490299, 1, 1)
|
colors = PackedColorArray(0.211765, 0.239216, 0.321569, 1, 0.278431, 0.54902, 0.74902, 1)
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
gradient = SubResource("Gradient_o7xwa")
|
gradient = SubResource("Gradient_o7xwa")
|
||||||
fill_from = Vector2(0, 1)
|
fill_from = Vector2(1, 0.730769)
|
||||||
|
fill_to = Vector2(0, 0)
|
||||||
|
|
|
||||||
|
|
@ -43,8 +43,29 @@ fullscreen={
|
||||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194342,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194342,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
left={
|
||||||
|
"deadzone": 0.5,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
right={
|
||||||
|
"deadzone": 0.5,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":68,"key_label":0,"unicode":100,"location":0,"echo":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
up={
|
||||||
|
"deadzone": 0.5,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
down={
|
||||||
|
"deadzone": 0.5,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
[rendering]
|
[rendering]
|
||||||
|
|
||||||
|
textures/canvas_textures/default_texture_filter=0
|
||||||
renderer/rendering_method="gl_compatibility"
|
renderer/rendering_method="gl_compatibility"
|
||||||
renderer/rendering_method.mobile="gl_compatibility"
|
renderer/rendering_method.mobile="gl_compatibility"
|
||||||
|
|
|
||||||
21
rug_player.gd
Normal file
21
rug_player.gd
Normal file
|
|
@ -0,0 +1,21 @@
|
||||||
|
extends CharacterBody2D
|
||||||
|
|
||||||
|
@export var SPEED = 100.0
|
||||||
|
|
||||||
|
@onready var animated_sprite_2d: AnimatedSprite2D = $AnimatedSprite2D
|
||||||
|
|
||||||
|
func _physics_process(_delta: float) -> void:
|
||||||
|
# Get the input direction and handle the movement/deceleration.
|
||||||
|
# As good practice, you should replace UI actions with custom gameplay actions.
|
||||||
|
var direction := Vector2(Input.get_axis("left", "right"), Input.get_axis("up", "down"))
|
||||||
|
if direction:
|
||||||
|
velocity = direction * SPEED
|
||||||
|
if direction.x != 0:
|
||||||
|
animated_sprite_2d.flip_h = direction.x >= 0
|
||||||
|
animated_sprite_2d.play("default")
|
||||||
|
else:
|
||||||
|
animated_sprite_2d.play("idle")
|
||||||
|
velocity.x = move_toward(velocity.x, 0, SPEED)
|
||||||
|
velocity.y = move_toward(velocity.y, 0, SPEED)
|
||||||
|
|
||||||
|
move_and_slide()
|
||||||
44
rug_player.tscn
Normal file
44
rug_player.tscn
Normal file
|
|
@ -0,0 +1,44 @@
|
||||||
|
[gd_scene load_steps=6 format=3 uid="uid://cap8s1gpqsueq"]
|
||||||
|
|
||||||
|
[ext_resource type="Script" path="res://rug_player.gd" id="1_cloox"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://qsccmmha7be6" path="res://tile000.png" id="2_5uvqy"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dcu1je46mxhk8" path="res://tile001.png" id="3_mquon"]
|
||||||
|
|
||||||
|
[sub_resource type="CircleShape2D" id="CircleShape2D_kwcsl"]
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id="SpriteFrames_ol8gj"]
|
||||||
|
animations = [{
|
||||||
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("2_5uvqy")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("3_mquon")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"default",
|
||||||
|
"speed": 10.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("2_5uvqy")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"idle",
|
||||||
|
"speed": 24.0
|
||||||
|
}]
|
||||||
|
|
||||||
|
[node name="RugPlayer" type="CharacterBody2D"]
|
||||||
|
scale = Vector2(10, 10)
|
||||||
|
motion_mode = 1
|
||||||
|
script = ExtResource("1_cloox")
|
||||||
|
SPEED = 300.0
|
||||||
|
|
||||||
|
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
|
||||||
|
shape = SubResource("CircleShape2D_kwcsl")
|
||||||
|
|
||||||
|
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
||||||
|
sprite_frames = SubResource("SpriteFrames_ol8gj")
|
||||||
|
autoplay = "idle"
|
||||||
|
frame = 1
|
||||||
|
frame_progress = 0.80536
|
||||||
|
|
@ -27,7 +27,7 @@ alignment = 1
|
||||||
[node name="RichTextLabel" type="RichTextLabel" parent="PanelContainer/VBoxContainer"]
|
[node name="RichTextLabel" type="RichTextLabel" parent="PanelContainer/VBoxContainer"]
|
||||||
layout_mode = 2
|
layout_mode = 2
|
||||||
bbcode_enabled = true
|
bbcode_enabled = true
|
||||||
text = "[wave amp=50.0 freq=5.0 connected=1][center][font_size=160][color=#FFFFFF]Godot: The new kids on the block![/color][/font_size][/center][/wave]"
|
text = "[wave amp=50.0 freq=5.0 connected=1][center][font_size=160][color=#FFFFFF]Godot: The new kid on the block![/color][/font_size][/center][/wave]"
|
||||||
fit_content = true
|
fit_content = true
|
||||||
|
|
||||||
[node name="Icon" type="Sprite2D" parent="PanelContainer/VBoxContainer"]
|
[node name="Icon" type="Sprite2D" parent="PanelContainer/VBoxContainer"]
|
||||||
|
|
|
||||||
BIN
tile000.png
Normal file
BIN
tile000.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 465 B |
34
tile000.png.import
Normal file
34
tile000.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://qsccmmha7be6"
|
||||||
|
path="res://.godot/imported/tile000.png-e45a503198d52da09d0dd062d7215744.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tile000.png"
|
||||||
|
dest_files=["res://.godot/imported/tile000.png-e45a503198d52da09d0dd062d7215744.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
BIN
tile001.png
Normal file
BIN
tile001.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 462 B |
34
tile001.png.import
Normal file
34
tile001.png.import
Normal file
|
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dcu1je46mxhk8"
|
||||||
|
path="res://.godot/imported/tile001.png-fd949ac84a5584b5f3c22a2bb2b3877f.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://tile001.png"
|
||||||
|
dest_files=["res://.godot/imported/tile001.png-fd949ac84a5584b5f3c22a2bb2b3877f.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
|
@ -1,22 +1,13 @@
|
||||||
[gd_scene load_steps=15 format=3 uid="uid://c7f5wae7pdjt2"]
|
[gd_scene load_steps=10 format=3 uid="uid://c7f5wae7pdjt2"]
|
||||||
|
|
||||||
[ext_resource type="Script" path="res://tools/Presentation.gd" id="1_qta7b"]
|
[ext_resource type="Script" path="res://tools/Presentation.gd" id="1_qta7b"]
|
||||||
[ext_resource type="PackedScene" uid="uid://cjnkbtvmbn8nf" path="res://slides/title.tscn" id="2_t5os2"]
|
[ext_resource type="PackedScene" uid="uid://d8j6ib7w6yys" path="res://slides/image_slide.tscn" id="2_ik415"]
|
||||||
[ext_resource type="PackedScene" uid="uid://d8j6ib7w6yys" path="res://slides/image_slide.tscn" id="2_y0y7a"]
|
[ext_resource type="Texture2D" uid="uid://bs6f7cgyoy6hb" path="res://rug/1.png" id="3_ipheb"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bs6f7cgyoy6hb" path="res://rug/1.png" id="3_1n18t"]
|
|
||||||
[ext_resource type="PackedScene" uid="uid://ccokwij05tg74" path="res://slides/standard.tscn" id="3_o6pbq"]
|
[ext_resource type="PackedScene" uid="uid://ccokwij05tg74" path="res://slides/standard.tscn" id="3_o6pbq"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bcgsioqubeos3" path="res://rug/2.png" id="4_4lnbk"]
|
[ext_resource type="Texture2D" uid="uid://bcgsioqubeos3" path="res://rug/2.png" id="4_s3h6q"]
|
||||||
[ext_resource type="Texture2D" uid="uid://xq82athlp711" path="res://rug/3.png" id="4_toov0"]
|
[ext_resource type="Texture2D" uid="uid://xq82athlp711" path="res://rug/3.png" id="5_soan3"]
|
||||||
[ext_resource type="Theme" uid="uid://bswj4s1sfy137" path="res://presentation_theme.tres" id="4_wo3mt"]
|
[ext_resource type="Texture2D" uid="uid://c8lv70amgbeev" path="res://rug/4.png" id="6_02god"]
|
||||||
[ext_resource type="Texture2D" uid="uid://bcnf6sw6dxp8b" path="res://02-3d-outdoor-with-editor.webp" id="5_8ldqg"]
|
[ext_resource type="PackedScene" uid="uid://cap8s1gpqsueq" path="res://rug_player.tscn" id="12_xc2ke"]
|
||||||
[ext_resource type="Texture2D" uid="uid://c8lv70amgbeev" path="res://rug/4.png" id="5_k0iyo"]
|
|
||||||
[ext_resource type="VideoStream" path="res://Cat-has-the-softest_-sweetest-little-meow.ogv" id="6_icktr"]
|
|
||||||
|
|
||||||
[sub_resource type="LabelSettings" id="LabelSettings_ys6im"]
|
|
||||||
font_size = 60
|
|
||||||
|
|
||||||
[sub_resource type="LabelSettings" id="LabelSettings_a1y11"]
|
|
||||||
font_size = 60
|
|
||||||
|
|
||||||
[sub_resource type="LabelSettings" id="LabelSettings_gl1th"]
|
[sub_resource type="LabelSettings" id="LabelSettings_gl1th"]
|
||||||
font_color = Color(1, 0, 0, 1)
|
font_color = Color(1, 0, 0, 1)
|
||||||
|
|
@ -24,7 +15,7 @@ font_color = Color(1, 0, 0, 1)
|
||||||
[node name="Presentation" type="Node" node_paths=PackedStringArray("slides_node", "exit_bar")]
|
[node name="Presentation" type="Node" node_paths=PackedStringArray("slides_node", "exit_bar")]
|
||||||
script = ExtResource("1_qta7b")
|
script = ExtResource("1_qta7b")
|
||||||
slides_node = NodePath("Slides")
|
slides_node = NodePath("Slides")
|
||||||
exit_bar = NodePath("ProgressBar")
|
exit_bar = NodePath("ExitBar")
|
||||||
|
|
||||||
[node name="Slides" type="Control" parent="."]
|
[node name="Slides" type="Control" parent="."]
|
||||||
layout_mode = 3
|
layout_mode = 3
|
||||||
|
|
@ -36,142 +27,187 @@ grow_vertical = 2
|
||||||
size_flags_horizontal = 3
|
size_flags_horizontal = 3
|
||||||
size_flags_vertical = 3
|
size_flags_vertical = 3
|
||||||
|
|
||||||
[node name="ImageSlide2" parent="Slides" instance=ExtResource("2_y0y7a")]
|
[node name="1" parent="Slides" instance=ExtResource("2_ik415")]
|
||||||
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
|
||||||
|
|
||||||
[node name="TextureRect2" parent="Slides/ImageSlide2/PanelContainer" index="0"]
|
[node name="TextureRect2" parent="Slides/1/PanelContainer" index="0"]
|
||||||
texture = ExtResource("3_1n18t")
|
texture = ExtResource("3_ipheb")
|
||||||
expand_mode = 3
|
expand_mode = 3
|
||||||
|
|
||||||
[node name="PanelContainer" parent="Slides/ImageSlide2/PanelContainer" index="1"]
|
[node name="PanelContainer" parent="Slides/1/PanelContainer" index="1"]
|
||||||
visible = false
|
visible = false
|
||||||
|
|
||||||
[node name="ImageSlide3" parent="Slides" instance=ExtResource("2_y0y7a")]
|
[node name="2" parent="Slides" instance=ExtResource("2_ik415")]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
|
||||||
|
|
||||||
[node name="TextureRect2" parent="Slides/ImageSlide3/PanelContainer" index="0"]
|
[node name="TextureRect2" parent="Slides/2/PanelContainer" index="0"]
|
||||||
texture = ExtResource("4_4lnbk")
|
texture = ExtResource("4_s3h6q")
|
||||||
expand_mode = 3
|
expand_mode = 3
|
||||||
|
|
||||||
[node name="PanelContainer" parent="Slides/ImageSlide3/PanelContainer" index="1"]
|
[node name="PanelContainer" parent="Slides/2/PanelContainer" index="1"]
|
||||||
visible = false
|
visible = false
|
||||||
|
|
||||||
[node name="ImageSlide4" parent="Slides" instance=ExtResource("2_y0y7a")]
|
[node name="3" parent="Slides" instance=ExtResource("2_ik415")]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
|
||||||
|
|
||||||
[node name="TextureRect2" parent="Slides/ImageSlide4/PanelContainer" index="0"]
|
[node name="TextureRect2" parent="Slides/3/PanelContainer" index="0"]
|
||||||
texture = ExtResource("4_toov0")
|
texture = ExtResource("5_soan3")
|
||||||
expand_mode = 3
|
expand_mode = 3
|
||||||
|
|
||||||
[node name="PanelContainer" parent="Slides/ImageSlide4/PanelContainer" index="1"]
|
[node name="PanelContainer" parent="Slides/3/PanelContainer" index="1"]
|
||||||
visible = false
|
visible = false
|
||||||
|
|
||||||
[node name="ImageSlide5" parent="Slides" instance=ExtResource("2_y0y7a")]
|
[node name="4" parent="Slides" instance=ExtResource("2_ik415")]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
|
||||||
|
|
||||||
[node name="TextureRect2" parent="Slides/ImageSlide5/PanelContainer" index="0"]
|
[node name="TextureRect2" parent="Slides/4/PanelContainer" index="0"]
|
||||||
texture = ExtResource("5_k0iyo")
|
texture = ExtResource("6_02god")
|
||||||
expand_mode = 3
|
expand_mode = 3
|
||||||
|
|
||||||
[node name="PanelContainer" parent="Slides/ImageSlide5/PanelContainer" index="1"]
|
[node name="PanelContainer" parent="Slides/4/PanelContainer" index="1"]
|
||||||
visible = false
|
visible = false
|
||||||
|
|
||||||
[node name="TitleSlide" parent="Slides" instance=ExtResource("2_t5os2")]
|
[node name="RugPlayer" parent="Slides/4" instance=ExtResource("12_xc2ke")]
|
||||||
|
position = Vector2(1503, 568)
|
||||||
|
|
||||||
|
[node name="What is Godot?" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
|
layout_mode = 1
|
||||||
|
|
||||||
|
[node name="Header" parent="Slides/What is Godot?" index="0"]
|
||||||
|
title = "What is Godot?"
|
||||||
|
subtitle = ""
|
||||||
|
|
||||||
|
[node name="RichTextLabel" parent="Slides/What is Godot?/ColorRect/MarginContainer/HBoxContainer" index="0"]
|
||||||
|
text = "It is an [u]open source[/u] game engine.
|
||||||
|
|
||||||
|
But wait... what does open source mean?"
|
||||||
|
|
||||||
|
[node name="Footer" parent="Slides/What is Godot?" index="2"]
|
||||||
|
visible = false
|
||||||
|
text = "Footer"
|
||||||
|
|
||||||
|
[node name="Glad You Asked!" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
|
|
||||||
[node name="StandardSlide1" parent="Slides" instance=ExtResource("3_o6pbq")]
|
[node name="Header" parent="Slides/Glad You Asked!" index="0"]
|
||||||
|
visible = false
|
||||||
|
title = "What is Godot?"
|
||||||
|
subtitle = ""
|
||||||
|
|
||||||
|
[node name="RichTextLabel" parent="Slides/Glad You Asked!/ColorRect/MarginContainer/HBoxContainer" index="0"]
|
||||||
|
size_flags_vertical = 4
|
||||||
|
text = "[center] [font_size=150]I'm so glad you asked!"
|
||||||
|
fit_content = true
|
||||||
|
|
||||||
|
[node name="TextureRect" parent="Slides/Glad You Asked!/ColorRect/MarginContainer/HBoxContainer" index="1"]
|
||||||
|
visible = false
|
||||||
|
|
||||||
|
[node name="Footer" parent="Slides/Glad You Asked!" index="2"]
|
||||||
|
visible = false
|
||||||
|
text = "Footer"
|
||||||
|
|
||||||
|
[node name="What is open source?" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
|
|
||||||
[node name="StandardSlide2" parent="Slides" instance=ExtResource("3_o6pbq")]
|
[node name="Header" parent="Slides/What is open source?" index="0"]
|
||||||
|
title = "What is open source software?"
|
||||||
|
subtitle = ""
|
||||||
|
|
||||||
|
[node name="RichTextLabel" parent="Slides/What is open source?/ColorRect/MarginContainer/HBoxContainer" index="0"]
|
||||||
|
text = "Open source means that the original source code is freely available. This means that the engine is:
|
||||||
|
[ul]Redistributable
|
||||||
|
Modifiable
|
||||||
|
Collaborative
|
||||||
|
Free forever!"
|
||||||
|
|
||||||
|
[node name="Footer" parent="Slides/What is open source?" index="2"]
|
||||||
|
visible = false
|
||||||
|
text = "Footer"
|
||||||
|
|
||||||
|
[node name="Games made in Godot" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
|
|
||||||
[node name="Header" parent="Slides/StandardSlide2" index="0"]
|
[node name="Header" parent="Slides/Games made in Godot" index="0"]
|
||||||
title = "Meowww!!!"
|
title = "Meowww!!!"
|
||||||
subtitle = "This is the third slide"
|
subtitle = "This is the third slide"
|
||||||
|
|
||||||
[node name="Footer" parent="Slides/StandardSlide2" index="2"]
|
[node name="Footer" parent="Slides/Games made in Godot" index="2"]
|
||||||
text = "Things are coming along well~"
|
text = "Things are coming along well~"
|
||||||
|
|
||||||
[node name="ImageSlide" type="VBoxContainer" parent="Slides"]
|
[node name="Benefits for game dev" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 0
|
layout_mode = 1
|
||||||
anchor_right = 1.0
|
|
||||||
anchor_bottom = 1.0
|
|
||||||
grow_horizontal = 2
|
|
||||||
grow_vertical = 2
|
|
||||||
theme = ExtResource("4_wo3mt")
|
|
||||||
|
|
||||||
[node name="PanelContainer" type="PanelContainer" parent="Slides/ImageSlide"]
|
[node name="Header" parent="Slides/Benefits for game dev" index="0"]
|
||||||
layout_mode = 2
|
title = "Meowww!!!"
|
||||||
size_flags_vertical = 3
|
subtitle = "This is the third slide"
|
||||||
|
|
||||||
[node name="TextureRect2" type="TextureRect" parent="Slides/ImageSlide/PanelContainer"]
|
[node name="Footer" parent="Slides/Benefits for game dev" index="2"]
|
||||||
layout_mode = 2
|
text = "Things are coming along well~"
|
||||||
texture = ExtResource("5_8ldqg")
|
|
||||||
|
|
||||||
[node name="PanelContainer" type="PanelContainer" parent="Slides/ImageSlide/PanelContainer"]
|
[node name="What makes Godot different?" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
layout_mode = 2
|
|
||||||
size_flags_horizontal = 4
|
|
||||||
size_flags_vertical = 8
|
|
||||||
|
|
||||||
[node name="MarginContainer" type="MarginContainer" parent="Slides/ImageSlide/PanelContainer/PanelContainer"]
|
|
||||||
layout_mode = 2
|
|
||||||
theme_override_constants/margin_left = 10
|
|
||||||
theme_override_constants/margin_top = 10
|
|
||||||
theme_override_constants/margin_right = 10
|
|
||||||
theme_override_constants/margin_bottom = 10
|
|
||||||
|
|
||||||
[node name="Label" type="Label" parent="Slides/ImageSlide/PanelContainer/PanelContainer/MarginContainer"]
|
|
||||||
layout_mode = 2
|
|
||||||
text = "This is a caption for the fullscreen content"
|
|
||||||
label_settings = SubResource("LabelSettings_ys6im")
|
|
||||||
|
|
||||||
[node name="VideoSlide" type="VBoxContainer" parent="Slides"]
|
|
||||||
visible = false
|
visible = false
|
||||||
layout_mode = 0
|
layout_mode = 1
|
||||||
anchor_right = 1.0
|
|
||||||
anchor_bottom = 1.0
|
|
||||||
grow_horizontal = 2
|
|
||||||
grow_vertical = 2
|
|
||||||
theme = ExtResource("4_wo3mt")
|
|
||||||
|
|
||||||
[node name="PanelContainer" type="PanelContainer" parent="Slides/VideoSlide"]
|
[node name="Header" parent="Slides/What makes Godot different?" index="0"]
|
||||||
layout_mode = 2
|
title = "Meowww!!!"
|
||||||
size_flags_vertical = 3
|
subtitle = "This is the third slide"
|
||||||
|
|
||||||
[node name="VideoStreamPlayer" type="VideoStreamPlayer" parent="Slides/VideoSlide/PanelContainer"]
|
[node name="Footer" parent="Slides/What makes Godot different?" index="2"]
|
||||||
layout_mode = 2
|
text = "Things are coming along well~"
|
||||||
stream = ExtResource("6_icktr")
|
|
||||||
loop = true
|
|
||||||
|
|
||||||
[node name="PanelContainer" type="PanelContainer" parent="Slides/VideoSlide/PanelContainer"]
|
[node name="Limitations" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
layout_mode = 2
|
visible = false
|
||||||
size_flags_horizontal = 4
|
layout_mode = 1
|
||||||
size_flags_vertical = 8
|
|
||||||
|
|
||||||
[node name="MarginContainer" type="MarginContainer" parent="Slides/VideoSlide/PanelContainer/PanelContainer"]
|
[node name="Header" parent="Slides/Limitations" index="0"]
|
||||||
layout_mode = 2
|
title = "Meowww!!!"
|
||||||
theme_override_constants/margin_left = 10
|
subtitle = "This is the third slide"
|
||||||
theme_override_constants/margin_top = 10
|
|
||||||
theme_override_constants/margin_right = 10
|
|
||||||
theme_override_constants/margin_bottom = 10
|
|
||||||
|
|
||||||
[node name="Label" type="Label" parent="Slides/VideoSlide/PanelContainer/PanelContainer/MarginContainer"]
|
[node name="Footer" parent="Slides/Limitations" index="2"]
|
||||||
layout_mode = 2
|
text = "Things are coming along well~"
|
||||||
text = "look at this adorable little cat :3"
|
|
||||||
label_settings = SubResource("LabelSettings_a1y11")
|
|
||||||
|
|
||||||
[node name="ProgressBar" type="ProgressBar" parent="."]
|
[node name="Godot\'s killer features" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
|
||||||
|
[node name="Header" parent="Slides/Godot\'s killer features" index="0"]
|
||||||
|
title = "Meowww!!!"
|
||||||
|
subtitle = "This is the third slide"
|
||||||
|
|
||||||
|
[node name="Footer" parent="Slides/Godot\'s killer features" index="2"]
|
||||||
|
text = "Things are coming along well~"
|
||||||
|
|
||||||
|
[node name="Want to learn Godot?" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
|
||||||
|
[node name="Header" parent="Slides/Want to learn Godot?" index="0"]
|
||||||
|
title = "Meowww!!!"
|
||||||
|
subtitle = "This is the third slide"
|
||||||
|
|
||||||
|
[node name="Footer" parent="Slides/Want to learn Godot?" index="2"]
|
||||||
|
text = "Things are coming along well~"
|
||||||
|
|
||||||
|
[node name="Our contact page (Leave up for questions)" parent="Slides" instance=ExtResource("3_o6pbq")]
|
||||||
|
visible = false
|
||||||
|
layout_mode = 1
|
||||||
|
|
||||||
|
[node name="Header" parent="Slides/Our contact page (Leave up for questions)" index="0"]
|
||||||
|
title = "Meowww!!!"
|
||||||
|
subtitle = "This is the third slide"
|
||||||
|
|
||||||
|
[node name="Footer" parent="Slides/Our contact page (Leave up for questions)" index="2"]
|
||||||
|
text = "Things are coming along well~"
|
||||||
|
|
||||||
|
[node name="ExitBar" type="ProgressBar" parent="."]
|
||||||
custom_minimum_size = Vector2(0, 50)
|
custom_minimum_size = Vector2(0, 50)
|
||||||
anchors_preset = 10
|
anchors_preset = 10
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
|
|
@ -183,7 +219,7 @@ max_value = 1.0
|
||||||
step = 0.0
|
step = 0.0
|
||||||
show_percentage = false
|
show_percentage = false
|
||||||
|
|
||||||
[node name="Label" type="Label" parent="ProgressBar"]
|
[node name="Label" type="Label" parent="ExitBar"]
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 10
|
anchors_preset = 10
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
|
|
@ -193,8 +229,17 @@ text = "Exiting"
|
||||||
label_settings = SubResource("LabelSettings_gl1th")
|
label_settings = SubResource("LabelSettings_gl1th")
|
||||||
horizontal_alignment = 1
|
horizontal_alignment = 1
|
||||||
|
|
||||||
[editable path="Slides/ImageSlide2"]
|
[editable path="Slides/1"]
|
||||||
[editable path="Slides/ImageSlide3"]
|
[editable path="Slides/2"]
|
||||||
[editable path="Slides/ImageSlide4"]
|
[editable path="Slides/3"]
|
||||||
[editable path="Slides/ImageSlide5"]
|
[editable path="Slides/4"]
|
||||||
[editable path="Slides/StandardSlide2"]
|
[editable path="Slides/What is Godot?"]
|
||||||
|
[editable path="Slides/Glad You Asked!"]
|
||||||
|
[editable path="Slides/What is open source?"]
|
||||||
|
[editable path="Slides/Games made in Godot"]
|
||||||
|
[editable path="Slides/Benefits for game dev"]
|
||||||
|
[editable path="Slides/What makes Godot different?"]
|
||||||
|
[editable path="Slides/Limitations"]
|
||||||
|
[editable path="Slides/Godot\'s killer features"]
|
||||||
|
[editable path="Slides/Want to learn Godot?"]
|
||||||
|
[editable path="Slides/Our contact page (Leave up for questions)"]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue