About 118,000 results
Open links in new tab
  1. How to open a .glb or .gltf file in blender?

    Oct 8, 2018 · My question is about opening .glb or .gltf files in Blender. I don't see these extensions in the Import options, although Export allows me to create files with either of those extensions.

  2. Importing GLB file, no option in dropdown menu

    Nov 2, 2024 · I've exported the Nomad file as a .glb. He shows that in the Import dropdown menu, than an option for "glTF 2.0 (.glb/ .gltf)" comes up. That doesn't come up for me though. How do I import the .glb file? I am completely new to Blender running 4.2.3 on …

  3. Where to place .glb file and how get path to it in android?

    Jun 5, 2022 · I can't understand where to put .glb file and how get a path to it. I tried to put it in assets or res folders, but in 2 hours i couldn't find how to get String path to it. I know that these folders have open() methods, which returns InputStream, but setOnTapPlaneGlbModel() needs String with a path as an argument.

  4. c# - Import .glb file into Unity from Solidworks - Stack Overflow

    Jan 8, 2020 · Using the following documentation, I was able to export a solidworks file into both .glb or .gltf file formats. According to the Solidworks documentation you should be able to then import these 3D models into Unity. When I go into the Unity assets folder and click import new asset, the file won't even show up in the dialog.

  5. How can I update a GLB/GLTF 3D model texture in Python

    Aug 8, 2021 · This is example how to do it. from pygltflib import GLTF2 from pygltflib.utils import ImageFormat, Image, Texture, Material filename = "Astronaut.glb" gltf = GLTF2().load(filename) # Step 1: Find the index of the existing texture you want to replace # Let's assume the texture you want to replace is at index 1 (you need to replace 1 with the actual index) …

  6. Can't open the extracted images using pygltflib - Stack Overflow

    Oct 16, 2024 · Error: {e}") continue elif image.bufferView is not None: # Extract image data from buffer view buffer_view = gltf.bufferViews[image.bufferView] buffer = gltf.buffers[buffer_view.buffer] # Read the binary data from the GLB file with open(glb_file, "rb") as f: f.seek(buffer_view.byteOffset) # Use byteOffset from BufferView image_data = f.read ...

  7. how to import .glb file in blender 2.80 beta using python api?

    Jun 8, 2019 · GLB is the binary form of the glTF format, and the importer (2.80 and higher, or 2.79 with manual install) can handle GLB filenames directly.

  8. Issues Displaying glb Model on HTML - Stack Overflow

    Sep 14, 2021 · I am trying to have a glb model displayed in a simple HTML webpage that I am building. To do so, I am following the API documentation from Model Viewer. I am unsure why the model is not displaying

  9. ASP .NET Core .glb file not found whereas the file was copy

    Dec 30, 2020 · In the server side when setting the UseStaticFiles you should add some options to allow UnkownType files to be accessed. There are two ways you can solve this. The first is especifying the type of the file that you wish to provide that way. In this case you should do it this way on you Startup.cs file, Configure function:

  10. Apply material and texture image using python in blender 3.4

    Mar 28, 2023 · Code is working it is importing my files and exporting into .glb format but issue when i open glb file it dose not contain texture image it shows grey... here is my code import bpy import os dir_p...

Refresh