-
-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UPBGE: Load scripts and actions before converting scene during libload.
Previously the scripts where loaded after the scene was converted and caused the python component conversion to failed because the script wasn't reachable at the import. This is fixed by moving the call to addImportMain before the scene conversion. Similar behaviour is applied for the actions.
- Loading branch information
1 parent
fcbde82
commit 7f35889
Showing
1 changed file
with
18 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7f35889
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!