Hi,
I am working on a prototype where I would want to load all my compositions up on the first web page that is requested (index.html) and thereafter only play the animations one by one as requested a user.
The user will not be interacting with the web page but will update a json file on the server and via web sockets I will change the order of the animations that are shown.
So will loading all the animations up front (could be up to 50 separate animations) be a bad performance move?
The reason I don't want to load the animations when needed is I am trying to avoid the delay of building the composition. I'd rather have everything ready to go.
I have been looking at Edge for a few days so not sure which is the best approach.
Thanks.