![]() |
Attention | Topic was automatically imported from the old Question2Answer platform. |
![]() |
Asked By | cmdrsteel |
When I export my project, it stops at about 33% of my total project, and about 84% of the assets, but doesn’t show an error. The exported project opens to the main menu without problems, and I can navigate to certain scenes from the main menu. But the actual game scene itself is not opening. The output log is not helpful at all, but if I can get a more detailed report of the export logs, I’ll know where to start looking for possible problems.
This is the current output:
ADDING: Contents/Resources/icon.icns size: 91969
ADDING: Contents/Info.plist size: 1095
ADDING: Contents/PkgInfo size: 9
ADDING: Contents/MacOS/My Game size: 40666104
I am exporting on a mac, however, this is happening regardless the type of export I am doing (mac, windows).
Also, I did an export much earlier in development to get templates working/see how it looks, with no problems.
Maybe you should try a reinstall?
Schweini | 2019-08-14 10:01
the actual game scene itself is not opening
How do you know the export actually doesn’t include some scenes? It could be a lot of different errors instead. The game closes? Freezes? Nothing happens?
Zylann | 2019-08-14 12:29
I click on it and nothing happens. I agree that it could be other things, such as something in the scene causing it to not load. Here is the game code that is being used that doesn’t open.
func _on_New_Game_pressed():
get_tree().change_scene(“res://main.tscn”)
I can still click on options before and after clicking new game without problems.
func _on_Options_pressed():
get_tree().change_scene(“res://options.tscn”)
cmdrsteel | 2019-08-14 14:30
Does this happen in a test project? Otherwise are you able to provide your project (or a reduced version of it) to see if I can reproduce it?
Zylann | 2019-08-14 17:43
Cutting the project down help me find the problem
cmdrsteel | 2019-08-15 03:26