-
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. |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
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.