Jelajahi Sumber

:sparkles: Static type return of functions

DricomDragon 2 tahun lalu
induk
melakukan
5cf2211a20

+ 1 - 1
godot/common/components/gdedit/GdScriptEdit.gd

@@ -95,7 +95,7 @@ const keywords: Array[String] = [
 ]
 
 
-func _ready():
+func _ready() -> void:
 	const keywords_color = Color(1.0, 0, 0)
 
 	var gd_syntax_highlight = SyntaxHighlighter.new()

+ 3 - 3
godot/projector/focus/Focus.gd

@@ -50,7 +50,7 @@ func transit_to_focus() -> void:
 	tween.tween_callback(end)
 
 
-func end():
+func end() -> void:
 	ended.emit()
 
 
@@ -77,9 +77,9 @@ func _invert_vector(vec: Vector2) -> Vector2:
 	return Vector2(1.0 / vec.x, 1.0 / vec.y)
 
 
-func _on_show_fast_move():
+func _on_show_fast_move() -> void:
 	beam_to_focus()
 
 
-func _on_show_slow_move():
+func _on_show_slow_move() -> void:
 	transit_to_focus()

+ 8 - 8
godot/projector/show/Show.gd

@@ -17,23 +17,23 @@ var current_slide: Slide
 @onready var slides: Array = get_children()
 
 
-func _ready():
+func _ready() -> void:
 	_enforce()
 	hide_every_slide()
 	go_slowly_to_next_slide()
 
 
-func go_slowly_to_next_slide():
+func go_slowly_to_next_slide() -> void:
 	_next_slide()
 	slow_move.emit()
 
 
-func go_fast_to_next_slide():
+func go_fast_to_next_slide() -> void:
 	_next_slide()
 	fast_move.emit()
 
 
-func _next_slide():
+func _next_slide() -> void:
 	_next_slide_at(_next_id())
 
 
@@ -56,13 +56,13 @@ func hide_every_slide() -> void:
 		slide.gently_hide()
 
 
-func _disconnect_current_slide():
+func _disconnect_current_slide() -> void:
 	if current_slide != null:
 		current_slide.remove_focus()
 		current_slide.finished.disconnect(_on_current_slide_finished)
 
 
-func _connect_current_slide():
+func _connect_current_slide() -> void:
 	current_slide.finished.connect(_on_current_slide_finished)
 
 
@@ -100,7 +100,7 @@ func _reset_id() -> void:
 		current_id = VOID_SLIDE_ID
 
 
-func _unhandled_key_input(event: InputEvent):
+func _unhandled_key_input(event: InputEvent) -> void:
 	if !event.is_pressed():
 		return
 
@@ -129,5 +129,5 @@ func _unhandled_input(event: InputEvent) -> void:
 		slow_move.emit()
 
 
-func _on_current_slide_finished():
+func _on_current_slide_finished() -> void:
 	go_slowly_to_next_slide()

+ 3 - 3
godot/projector/slide/Slide.gd

@@ -11,7 +11,7 @@ signal finished
 var center_offset: Vector2
 
 
-func _ready():
+func _ready() -> void:
 	center_offset = _compute_center_offset()
 	remove_focus()
 
@@ -25,7 +25,7 @@ func focus() -> void:
 	set_process_unhandled_key_input(true)
 
 
-func get_center():
+func get_center() -> Vector2:
 	return get_position() + center_offset
 
 
@@ -36,7 +36,7 @@ func gently_hide() -> void:
 	set_visible(false)
 
 
-func _unhandled_key_input(event: InputEvent):
+func _unhandled_key_input(event: InputEvent) -> void:
 	if event.is_action("ui_accept") and event.is_pressed():
 		finished.emit()
 		get_viewport().set_input_as_handled()