You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What feature or change would you like to see made?
We currently parse the metadata by creating the frame metadata from shared and per-frame sequences each time, which is inefficient. We should explore a better approach.
One suggestion by @wayfarer3130 is to use JavaScript objects with inheritance. We can start with an object containing all the instance data we have, then use:
What feature or change would you like to see made?
We currently parse the metadata by creating the frame metadata from shared and per-frame sequences each time, which is inefficient. We should explore a better approach.
One suggestion by @wayfarer3130 is to use JavaScript objects with inheritance. We can start with an object containing all the instance data we have, then use:
For the functional groups, use a hidden value per frame with:
This method will be more memory-efficient and will avoid constantly recreating objects. We can also implement a caching strategy for it.
Why should we prioritize this feature?
Faster multiframe
The text was updated successfully, but these errors were encountered: