瀏覽代碼

:memo: Rework script section

To make it more legible.
DricomDragon 2 年之前
父節點
當前提交
7157a0ada1

+ 3 - 8
godot/run/root.tscn

@@ -1,4 +1,4 @@
-[gd_scene load_steps=78 format=3 uid="uid://cicpg8p1cfx7b"]
+[gd_scene load_steps=77 format=3 uid="uid://cicpg8p1cfx7b"]
 
 [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"]
@@ -47,7 +47,6 @@
 [ext_resource type="PackedScene" uid="uid://5vixp6g6mslh" path="res://slides/225/Cooperation.tscn" id="36_bn65g"]
 [ext_resource type="PackedScene" uid="uid://bg107golvn8m" path="res://slides/270/Script.tscn" id="36_yphsp"]
 [ext_resource type="PackedScene" uid="uid://bwc32lqst546d" path="res://slides/231/ExtendByPlugins.tscn" id="37_eliur"]
-[ext_resource type="PackedScene" uid="uid://c5rdcb51327iy" path="res://slides/280/Paradigme.tscn" id="37_j80fs"]
 [ext_resource type="PackedScene" uid="uid://dddplxjxkqvyu" path="res://slides/232/ExtendByNative.tscn" id="38_q4uby"]
 [ext_resource type="PackedScene" uid="uid://cuhrrbm7aovb8" path="res://slides/233/ExtendByFormat.tscn" id="39_5ma86"]
 [ext_resource type="PackedScene" uid="uid://v6m8yalfijff" path="res://slides/255/ProjectParam.tscn" id="45_xllfd"]
@@ -302,13 +301,9 @@ scale = Vector2(0.3, 0.3)
 position = Vector2(6356, 7366)
 scale = Vector2(0.3, 0.3)
 
-[node name="Paradigme" parent="Board/Show" instance=ExtResource("37_j80fs")]
-position = Vector2(5618, 7910)
-scale = Vector2(0.8, 0.8)
-
 [node name="ParaReactive" parent="Board/Show" instance=ExtResource("63_4ntlc")]
-position = Vector2(6089, 8631)
-scale = Vector2(0.3, 0.3)
+position = Vector2(5597, 8331)
+scale = Vector2(0.8, 0.8)
 
 [node name="ParaCallback" parent="Board/Show" instance=ExtResource("64_qqqi8")]
 position = Vector2(5750, 9030)

+ 2 - 8
godot/slides/271/ScriptVar.tscn

@@ -24,14 +24,8 @@ offset_left = 49.0
 offset_top = 406.0
 offset_right = 1837.0
 offset_bottom = 1063.0
-text = "var talk_name = \"Waiting GD\"
-talk_name = \"Make game with GD\"
-
-var penguin_speed: float = 50.0
-penguin_speed = penguin_speed + 5
-
-var penguin_names: Array(String) = [\"Tux\", \"Estragon\", \"Vladimir\"]
-var full_name = penguin_names[0] + \" Dupont\""
+text = "var penguin_speed: float = 50.0
+penguin_speed = penguin_speed + 5"
 
 [node name="Int" type="Sprite2D" parent="."]
 position = Vector2(187, 283)

+ 14 - 3
godot/slides/272/ScriptFunc.tscn

@@ -1,9 +1,10 @@
-[gd_scene load_steps=5 format=3 uid="uid://b56og44flraar"]
+[gd_scene load_steps=6 format=3 uid="uid://b56og44flraar"]
 
 [ext_resource type="Script" path="res://projector/slide/Slide.gd" id="1_orknp"]
 [ext_resource type="Texture2D" uid="uid://3i6oj4q3qeam" path="res://slides/272/VisualShaderNodeFloatFunc.svg" id="2_kg7eu"]
 [ext_resource type="PackedScene" uid="uid://bvrtmyq4g1qes" path="res://common/components/title/title.tscn" id="3_erhoj"]
 [ext_resource type="PackedScene" uid="uid://dogtm6fdbp3wl" path="res://common/components/gdedit/GdScriptEdit.tscn" id="4_ai8iv"]
+[ext_resource type="PackedScene" uid="uid://b811jddpttnt4" path="res://common/components/subtitle/subtitle.tscn" id="5_g5ffp"]
 
 [node name="ScriptFunc" type="Node2D"]
 script = ExtResource("1_orknp")
@@ -21,13 +22,23 @@ offset_bottom = 194.0
 text = "Les fonctions"
 
 [node name="GdScriptEdit" parent="." instance=ExtResource("4_ai8iv")]
-offset_right = 1403.0
-offset_bottom = 1033.0
+offset_left = 52.0
+offset_top = 207.0
+offset_right = 1346.0
+offset_bottom = 942.0
 text = "func _ready():
 	var penguin_speed: float = 40.0 # km/h
 	penguin_speed = accelerate(penguin_speed)
 	penguin_speed = accelerate(penguin_speed)
+	print(\"Tux runs at \", penguin_speed)
 
 func accelerate(initial_speed: float) -> float:
 	var new_speed: float = initial_speed + 2.0
 	return new_speed"
+
+[node name="Subtitle" parent="." instance=ExtResource("5_g5ffp")]
+offset_left = 57.0
+offset_top = 952.0
+offset_right = 1326.0
+offset_bottom = 1083.0
+text = "Tux runs at 44"

godot/slides/280/Paradigme.tscn → godot/slides/280/TitleToDo.tscn


+ 13 - 10
godot/slides/282/ParaCallback.tscn

@@ -9,7 +9,7 @@
 script = ExtResource("1_tzxtk")
 
 [node name="Sprite2D" type="Sprite2D" parent="."]
-position = Vector2(1471, 593)
+position = Vector2(1684, 528)
 scale = Vector2(2, 2)
 texture = ExtResource("2_xo4iv")
 
@@ -21,14 +21,17 @@ offset_bottom = 194.0
 text = "Écoutez votre moteur"
 
 [node name="GdScriptEdit" parent="." instance=ExtResource("4_h8f6o")]
-offset_left = 47.0
-offset_right = 1087.0
-text = "
-func _ready() -> void:
-	pass
+offset_left = 45.0
+offset_top = 289.0
+offset_right = 1469.0
+offset_bottom = 1036.0
+text = "func _ready() -> void:
+	speed = 0
 
-func _physics_process() -> void:
-	pass
+func _physics_process(delta: float) -> void:
+	apply_force(Vector2.RIGHT)
 
-func _unhandled_input() -> void:
-	pass"
+func _unhandled_key_input(event: InputEvent) -> void:
+	if event.is_action(\"ui_accept\") and event.is_pressed():
+		apply_impulse(Vector2.UP)
+		get_viewport().set_input_as_handled()"

+ 23 - 16
godot/slides/283/ParaSignal.tscn

@@ -1,10 +1,11 @@
-[gd_scene load_steps=6 format=3 uid="uid://drh3sqivyydkj"]
+[gd_scene load_steps=7 format=3 uid="uid://drh3sqivyydkj"]
 
 [ext_resource type="Script" path="res://projector/slide/Slide.gd" id="1_pgpic"]
 [ext_resource type="PackedScene" uid="uid://dogtm6fdbp3wl" path="res://common/components/gdedit/GdScriptEdit.tscn" id="3_3pelu"]
 [ext_resource type="PackedScene" uid="uid://bvrtmyq4g1qes" path="res://common/components/title/title.tscn" id="3_agrvb"]
 [ext_resource type="Texture2D" uid="uid://dhwxa7mwj7lqq" path="res://slides/283/Signals.svg" id="4_okptd"]
 [ext_resource type="Texture2D" uid="uid://cs0ev7fsrh2wd" path="res://slides/283/Signal.svg" id="5_15k1w"]
+[ext_resource type="PackedScene" uid="uid://b811jddpttnt4" path="res://common/components/subtitle/subtitle.tscn" id="6_t25x4"]
 
 [node name="ParaSignal" type="Node2D"]
 script = ExtResource("1_pgpic")
@@ -17,21 +18,21 @@ offset_bottom = 186.0
 text = "Reliez vos nœuds"
 
 [node name="GdScriptSignalEmit" parent="." instance=ExtResource("3_3pelu")]
-offset_left = 28.0
-offset_top = 63.0
-offset_right = 768.0
+offset_left = 31.0
+offset_top = 21.0
+offset_right = 771.0
 offset_bottom = 626.0
 text = "class_name Penguin
 
-signal jdll_reached
+signal took_off
 
 func _process():
-	if is_at_jdll(position):
-		jdll_reached.emit()"
+	if linear_velocity.x > 42:
+		took_off.emit()"
 
 [node name="SignalSend" type="Sprite2D" parent="."]
 modulate = Color(0, 1, 0, 1)
-position = Vector2(139, 769)
+position = Vector2(136, 741)
 scale = Vector2(2, 2)
 texture = ExtResource("4_okptd")
 
@@ -40,17 +41,23 @@ offset_left = 794.0
 offset_top = 377.0
 offset_right = 1912.0
 offset_bottom = 1076.0
-text = "class_name Talker
+text = "class_name Radar
 
-const talk_room_pos = Vector3(14.0, 53.2, 10.9)
+func print_flying_object(name: String):
+	print(name, \" is flying!\")
 
-func go_to_the_talk_room():
-	position = talk_room_pos
-
-func _on_Penguin_jdll_reached():
-	go_to_the_talk_room()"
+func _on_Penguin_took_off():
+	print_flying_object(\"Penguin\")"
 
 [node name="SignalRec" type="Sprite2D" parent="."]
-position = Vector2(652, 898)
+position = Vector2(669, 757)
 scale = Vector2(2, 2)
 texture = ExtResource("5_15k1w")
+
+[node name="Subtitle" parent="." instance=ExtResource("6_t25x4")]
+offset_left = 39.0
+offset_top = 947.0
+offset_right = 777.0
+offset_bottom = 1078.0
+text = "Penguin is flying!"
+horizontal_alignment = 2