12-26-2024 10:47 AM
Hi! I am experiencing an issue where my scene crashes the instant it loads. I have a loading scene and a script in there that loads the main scene after 15 seconds. Here is the loading script in case it is causing any problems:
12-26-2024 10:30 PM
You should turn off the execution of Update after LoadScene. While Scene is loading, update may still execute even if you use Single and load immediately. Alternatively, using LoadSceneAsync is a better option to load the scene
12-27-2024 06:18 AM
Thanks for answering! I am not sure how scripting works yet (this is someone else's script), although I really want to learn. I've asked ChatGPT, do you mean like this?
Thanks!