Update certain example code snippets to use the new syntax

This commit is contained in:
Kongfa Waroros
2024-08-22 21:59:03 +07:00
committed by Max Hilbrunner
parent 52d823115b
commit 050c9b94a9
6 changed files with 7 additions and 7 deletions

View File

@@ -483,7 +483,7 @@ Here is the GDScript sample code:
func _ready():
print("Start debugging")
HilbertHotel.connect("occupy_room", self, "_print_occupy_room")
HilbertHotel.occupy_room.connect(_print_occupy_room)
var rid = HilbertHotel.create_bus()
OS.delay_msec(2000)
HilbertHotel.create_bus()