ScriptControl.tscn 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. [gd_scene load_steps=5 format=3 uid="uid://cmwicqr38kp2v"]
  2. [ext_resource type="Script" path="res://projector/slide/Slide.gd" id="1_kycmz"]
  3. [ext_resource type="Texture2D" uid="uid://b3s3m808k1wij" path="res://slides/273/Loop.svg" id="2_lqnb1"]
  4. [ext_resource type="PackedScene" uid="uid://bvrtmyq4g1qes" path="res://common/components/title/title.tscn" id="3_lmauo"]
  5. [ext_resource type="PackedScene" uid="uid://dogtm6fdbp3wl" path="res://common/components/gdedit/GdScriptEdit.tscn" id="4_ia6x0"]
  6. [node name="ScriptControl" type="Node2D"]
  7. script = ExtResource("1_kycmz")
  8. [node name="Sprite2D" type="Sprite2D" parent="."]
  9. modulate = Color(0.823529, 1, 0, 1)
  10. position = Vector2(1632, 516)
  11. scale = Vector2(2, 2)
  12. texture = ExtResource("2_lqnb1")
  13. [node name="Title" parent="." instance=ExtResource("3_lmauo")]
  14. offset_left = 85.0
  15. offset_top = 26.0
  16. offset_right = 1847.0
  17. offset_bottom = 194.0
  18. text = "Les structures de contrôle"
  19. [node name="GdScriptEdit" parent="." instance=ExtResource("4_ia6x0")]
  20. offset_left = 58.0
  21. offset_top = 268.0
  22. offset_right = 1435.0
  23. offset_bottom = 1050.0
  24. text = "func _ready():
  25. var penguin_speed: float = 40.0 # km/h
  26. for increment in range(4):
  27. penguin_speed = accelerate(penguin_speed)
  28. if penguin_speed > 100:
  29. print(\"Tux flies!\")
  30. func accelerate(initial_speed: float) -> float:
  31. var new_speed: float = initial_speed + 2.0
  32. return new_speed"