0
0

More than 1 year has passed since last update.

GLTFからGLBに変換すーる(Python 3.9)

Posted at

はじめに

GLTFからGLBに変換していくー

開発環境

  • Windows 10
  • Python 3.9

導入

pip install gltflib
gltf2glb.py
from gltflib import GLTF # pip install gltflib

filename = "alexander/scene.gltf"
gltf = GLTF.load(filename)
gltf.export('alexander.glb')
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0