Przeglądaj źródła

Add a perpetual rotating logo

DricomDragon 1 tydzień temu
rodzic
commit
798575c8a7

+ 14 - 7
godot/example/slides/3Cool.tscn

@@ -1,16 +1,23 @@
-[gd_scene load_steps=2 format=3 uid="uid://bgleyjsx2qhus"]
+[gd_scene load_steps=4 format=3 uid="uid://bgleyjsx2qhus"]
 
 [ext_resource type="Script" uid="uid://dujtdgtfgki4c" path="res://addons/slide_show/projector/slide/Slide.gd" id="1_t1lrj"]
+[ext_resource type="Texture2D" uid="uid://gxy30ilf0vce" path="res://icon.png" id="2_13txs"]
+[ext_resource type="Script" uid="uid://kn7lq06ftri" path="res://example/util/rotation.gd" id="3_av8dm"]
 
 [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
+offset_left = 88.0
+offset_top = 16.0
+offset_right = 1035.0
+offset_bottom = 210.0
 theme_override_font_sizes/font_size = 142
-text = "That's
-cool!"
+text = "So cool!"
 horizontal_alignment = 1
+
+[node name="RotatingLogo" type="Sprite2D" parent="."]
+position = Vector2(563, 409)
+scale = Vector2(1.41875, 1.41875)
+texture = ExtResource("2_13txs")
+script = ExtResource("3_av8dm")

+ 9 - 0
godot/example/util/rotation.gd

@@ -0,0 +1,9 @@
+class_name Rotation
+extends Node2D
+
+
+@export var angular_speed: float = PI ## rad / s
+
+
+func _process(delta: float) -> void:
+	rotate(delta * angular_speed)

+ 1 - 0
godot/example/util/rotation.gd.uid

@@ -0,0 +1 @@
+uid://kn7lq06ftri