#Buttons can be pressed while game is loading
6 messages · Page 1 of 1 (latest)
You could start a timer when the scene is ready and when it timeout, allow inputs
not tested, but you could also try waiting for one frame :
await get_tree().process_frame
my_bool_activate_inputs = true
But the timer solution sounds good too
I tried it just now, it works