Wie man eine DAE-Datei in GLB auf der Kommandozeile konvertiert
Installieren Sie zuerst assimp:
install_assimp.sh
sudo apt-get install -y assimp-utilsKonvertieren Sie dann die Datei:
convert_dae_to_glb.sh
assimp export input.dae output.glboder konvertieren Sie alle Dateien im aktuellen Ordner:
convert_all_dae.sh
for i in *.dae ; do assimp export "$i" "${i%.dae}.glb" ; doneCheck out similar posts by category:
3D
If this post helped you, please consider buying me a coffee or donating via PayPal to support research & publishing of new posts on TechOverflow