Optimized 3D Models for Android AR: A Guide to FBX to GLB Conversion

We've faced this situation: a client develops an Android AR app on ARCore, and 3D models in FBX with Blinn-Phong materials don't load. We once lost two days debugging a model that displayed as a gray square — it turned out the UV mapping was broken. GLB is the binary container of the glTF 2.0 format

Development and support of all types of mobile applications:

Information and entertainment mobile applications
News apps, games, reference guides, online catalogs, weather apps, fitness and health apps, travel apps, educational apps, social networks and messengers, quizzes, blogs and podcasts, forums, aggregators
E-commerce mobile applications
Online stores, B2B apps, marketplaces, online exchanges, cashback services, exchanges, dropshipping platforms, loyalty programs, food and goods delivery, payment systems.
Business process management mobile applications
CRM systems, ERP systems, project management, sales team tools, financial management, production management, logistics and delivery management, HR management, data monitoring systems
Electronic services mobile applications
Classified ads platforms, online schools, online cinemas, electronic service platforms, cashback platforms, video hosting, thematic portals, online booking and scheduling platforms, online trading platforms

These are just some of the types of mobile applications we work with, and each of them may have its own specific features and functionality, tailored to the specific needs and goals of the client.

Showing 1 of 1All 1734 services
Optimized 3D Models for Android AR: A Guide to FBX to GLB Conversion
Simple
~1 day

Our competencies:

Frequently Asked Questions

Latest works

  • image_mobile-applications_feedme_467_0.webp
    Development of a mobile application for FEEDME
    897
  • image_mobile-applications_xoomer_471_0.webp
    Development of a mobile application for XOOMER
    784
  • image_mobile-applications_rhl_428_0.webp
    Development of a mobile application for RHL
    1216
  • image_mobile-applications_zippy_411_0.webp
    Development of a mobile application for ZIPPY
    1081
  • image_mobile-applications_affhome_429_0.webp
    Development of a mobile application for Affhome
    1004
  • image_mobile-applications_flavors_409_0.webp
    Development of a mobile application for the FLAVORS company
    599

We've faced this situation: a client develops an Android AR app on ARCore, and 3D models in FBX with Blinn-Phong materials don't load. We once lost two days debugging a model that displayed as a gray square — it turned out the UV mapping was broken. GLB is the binary container of the glTF 2.0 format, the standard defined by the Khronos glTF 2.0 Specification. ARCore, Sceneform, model-viewer, WebXR — all use glTF/GLB. Unlike USDZ, GLB works cross-platform: Android AR, WebAR, Three.js, Babylon.js, Unity, Unreal. But "open standard" doesn't mean "everything converts without issues". Over 5+ years specializing in glTF pipeline and with more than 150 successful conversion projects, we've developed a pipeline that guarantees compatibility and performance — we'll share it. Poor conversion leads to budget overruns on rework: average savings on storage and transfer after Draco compression are 70–90%. Our typical cost per model ranges from $50 to $150, and batch savings can exceed $1,000. Contact us for a free consultation on the conversion pipeline. Our GLB optimization pipeline for ARCore uses Draco compression and KTX2 textures to ensure high performance.

GLB structure and requirements for AR

glTF 2.0 describes a scene via JSON: meshes, materials (PBR metallic-roughness workflow), animations, skins, cameras, lights. GLB packs JSON + binary data (geometry, animations) + textures into a single file.

Mandatory requirements for Android ARCore / Sceneform:

  • Materials only via pbrMetallicRoughness — Blinn-Phong, Phong, Lambert are not supported
  • Textures: PNG (with alpha) or JPEG (without alpha), max 2048×2048
  • Geometry: only triangles (TRIANGLES primitive mode), no quads
  • No unreferenced nodes and materials (the validator complains)
  • asset.generator — desirable (helps with debug compatibility)

How to convert FBX, OBJ, and USDZ to GLB?

  1. FBX → GLB. Blender is the best intermediate converter:
blender --background --python fbx_to_glb.py -- input.fbx output.glb 

Python script for Blender:

import bpy bpy.ops.import_scene.fbx(filepath=input_path) bpy.ops.export_scene.gltf( filepath=output_path, export_format='GLB', export_materials='EXPORT', export_animations=True, export_apply=True # applies modifiers ) 

The main problem with FBX → GLB via Blender: FBX materials often use Standard or Lambert shaders — Blender converts them to Principled BSDF, but parameters (specular, shininess) map approximately. The result needs visual verification.

  1. OBJ → GLB. OBJ does not support animation, PBR materials (only MTL with Kd/Ks), skins. For static objects, convert via Blender or obj2gltf. The MTL file maps to glTF pbrMetallicRoughness approximately: KdbaseColorFactor, map_KdbaseColorTexture. Normal, roughness, metallic maps from MTL are not picked up — they need to be added manually via glTF pipeline.

  2. USDZ → GLB (iOS → Android). Apple Reality Converter can export to USD/OBJ, then via Blender to GLB. There is no direct USDZ→GLB converter — an intermediate step via USD Python API or Blender is mandatory.

How conversion is performed: step by step

  1. Prepare the source model. Check UV mapping, scale, PBR materials. Remove duplicate geometry.
  2. Conversion. Use Blender, obj2gltf, or USD Python API depending on format.
  3. Post-processing. Manual material correction, removal of unused nodes, assign doubleSided when necessary.

Why is optimization for mobile AR important?

Without optimization, even a simple model can cause lag on mid-range devices. We use three techniques:

Draco compression – compresses geometry by 60–90% without visible quality loss. Compared to no compression, Draco is 3–10x better.

KTX2/Basis Universal textures – GPU-compressed textures, load faster and use less VRAM. KTX2 textures load 2x faster than JPEG on mobile devices and reduce memory consumption by 40-60%.

Mesh quantization – packs float32 vertex coordinates into int16 — precision loss < 0.01%, size gain 25–40%.

Commands for optimization:

# Draco compression npx gltf-pipeline -i model.glb -o model_draco.glb --draco.compressionLevel 7 # KTX2 textures npx gltf-transform etc1s model.glb model_ktx2.glb # Quantization npx gltf-transform quantize model.glb model_quantized.glb 

Validation

glTF Validator from Khronos is mandatory before deployment:

npx gltf-validator model.glb 

It outputs errors and warnings with codes. Codes like ACCESSOR_ELEMENT_OUT_OF_MIN_BOUND indicate floating values outside allowed range, often from FBX conversion.

model-viewer (Google) — browser viewer for glTF, shows model as in ARCore. Ideal for quick check before installation on device. Validate your GLB model for ARCore using glTF Validator.

Typical errors

Error Consequence Solution
Model without UV mapping In ARCore white or gray Unwrap UV in Blender
Double-sided not set Internal faces not visible Add doubleSided: true
Coordinates in inches instead of meters Object microscopic or giant Scale to meters
Non-linear interpolation animation glTF does not support Convert to LINEAR or CUBICSPLINE

What's included in the turnkey conversion service

  • Analysis of source models (format, materials, animations)
  • Conversion to GLB with manual material correction
  • Optimization (Draco, KTX2, quantization)
  • Validation via glTF Validator and model-viewer
  • Documentation: conversion report, compatibility checklist
  • Guarantee: model displays correctly on ARCore devices
  • Trusted by multiple clients with 5+ years of experience and over 150 successful projects.

Timelines

Volume Timeline
1–10 models with manual conversion and check 1–3 days
Automated pipeline FBX/OBJ → GLB 1 week
Batch of 50–200 models with optimization and validation 2–3 weeks
Conversion example Recently we converted a batch of 100 interior furniture models from FBX to GLB. After Draco compression, the average file size dropped from 25 MB to 3 MB — that's 8x smaller. The client noted that the app loaded twice as fast on mid-range devices.

Our team of 10 engineers has delivered optimized GLB/GLTF models for companies in furniture, automotive, and retail sectors. Contact us to evaluate your project — we'll prepare a proposal considering up to 60% savings on file size. Order conversion with compatibility guarantee. Over 100 successfully converted projects over years of work — trust experienced engineers.