feat: store projects as binary data #42
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently we store each project as stringified json. This has the advantage of being human readable. But if we want to store textures or external 3d models inside a project we would have to b64 encode it, because json does not support binary data.
Also it would be fun to implement a binary format. Also with this maybe we can handle versioning of projects so that when the project schema changes we can migrate it.