File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
mirror-godot-app/scripts/space Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -123,9 +123,12 @@ func _preload_space_objects() -> void:
123123func setup_space_objects () -> void :
124124 assert (Zone .is_host ())
125125 clear_children ()
126+ print ("Preloading space objects: " , Time .get_datetime_string_from_system ())
126127 # preload necessary space_objects on server first
127128 _preload_space_objects ()
128129 _load_object_start_time = Time .get_unix_time_from_system ()
130+
131+ print ("Creating standard space objects: " , Time .get_datetime_string_from_system ())
129132 for space_obj in Zone .space_objects :
130133 if space_obj .get ("preloadBeforeSpaceStarts" , false ):
131134 continue
@@ -139,6 +142,7 @@ func setup_space_objects() -> void:
139142 create_space_object (space_obj , {})
140143 await wait_until_ready_to_simulate ()
141144 print ("Completed loading server objects took %d seconds" % (Time .get_unix_time_from_system () - _load_object_start_time ))
145+ print ("Physics Ready at: " , Time .get_datetime_string_from_system ())
142146 space_objects_created .emit ()
143147
144148
You can’t perform that action at this time.
0 commit comments