|
Shouldn't the callbacks be stacked when a file is being read? GDevelop/GDJS/Runtime/jsonmanager.ts Lines 111 to 115 in bc606ed Because when
I guess that when there is already a callback for a given file, the second request should only adds the callback to the list instead of loading the file again. |
Answered by
4ian
Nov 17, 2021
Replies: 1 comment
|
You're correct, a pending list (with proper cleaning if the loading failed I guess) is needed to have a 100% correct behavior including the case you're mentioning. |
0 replies
Answer selected by
D8H
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're correct, a pending list (with proper cleaning if the loading failed I guess) is needed to have a 100% correct behavior including the case you're mentioning.