Dialogic 1.4.1 Crashing on Android #879
-
Hello all, I've been having some trouble with Dialogic 1.4.1. On my PC it works flawlessly. However, when I export to Android (Samsung Galaxy s8) to debug it will freeze and crash the whole game every time I try to call a dialog. The error is as follows. [D] An error occurred when trying to access the custom event folder This is even after removing and redownloading the addon, both with and without a custom theme. Any idea what could be going on? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
So the 'custom event folder' bug is a bit of a red herring. It's annoying, but not causing the problem. You're not the first to suffer from this as #841 shows, and I recently got hit with it as well. I think I found the solution, and it should be going into 1.4.2 soon. But if you want to see if it works for you immediately Find export_plugin.gd, which should be at res://addons/dialogic/Other/export_plugin.gd and add the following starting at line 4 (first thing after the function declaration)
In addition make sure you're export configuration contains the following If this works for you, please let us know! If it does work you may also be interested in #876 since right now advancing dialog in mobile is broken |
Beta Was this translation helpful? Give feedback.
-
Hey thanks for replying so quick! That fix actually worked for me and I can advance my dialog using a touch button that's called to show/hide when the timeline begins/ends. I haven't used custom events at all. I'm still getting the [D] An error occurred when trying to access the custom event folder message but at least it's not crashing me anymore. |
Beta Was this translation helpful? Give feedback.
So the 'custom event folder' bug is a bit of a red herring. It's annoying, but not causing the problem. You're not the first to suffer from this as #841 shows, and I recently got hit with it as well. I think I found the solution, and it should be going into 1.4.2 soon. But if you want to see if it works for you immediately
Find export_plugin.gd, which should be at res://addons/dialogic/Other/export_plugin.gd and add the following starting at line 4 (first thing after the function declaration)
In addition make sure you're export configuration contains the following
If…