[IGN-6503]Project Library Script Initialization Races

Importing from project library scripts is known to cause problems. Instead of importing you should be using the full path/name of the resource you would normally import.

# Don't use import
from shared.x import y
# instead call it as
shared.x.y()
1 Like