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
It's possible to clone this repository and point to the hosted version but this repository is huge (>500Mo). Briefly skimmed through it seems most of it (e.g .git itself, .blend model source, etc) aren't actually needed.
Few paths to consider, from easiest to more demanding
updating README.md with required directories, e.g ./fonts and ./controllers I imagine, clarifying which files can removed to trim down to lowest size
provide a "build" with the minimum, e.g a .zip generated from a script like tar -cvf minglb.tar fonts/ $( find controllers/ -type f -name "*.glb" )
changing the structure to have a dedicated directory with only necessary content, e.g ./required/ with ./required/fonts and ./required/controllers and keeping there only used files, e.g .glb but not .blend
splitting in 2 repositories
The text was updated successfully, but these errors were encountered:
Thanks to aframevr/aframe#5333 now in 1.5.0 it's possible to define the CDN that can thus be local, thus follow aframevr/aframe#5119 .
It's possible to clone this repository and point to the hosted version but this repository is huge (>500Mo). Briefly skimmed through it seems most of it (e.g .git itself, .blend model source, etc) aren't actually needed.
Few paths to consider, from easiest to more demanding
tar -cvf minglb.tar fonts/ $( find controllers/ -type f -name "*.glb" )
The text was updated successfully, but these errors were encountered: