Questions tagged [fbx]

FBX is an Autodesk proprietary file format (.fbx) used to provide interoperability between digital content creation applications like 3ds Max, Maya, MotionBuilder.

Description

FBX is an Autodesk proprietary file format (.fbx) used to provide interoperability between digital content creation applications like 3ds Max, Maya, MotionBuilder.

References

http://www.autodesk.com/products/fbx/overview

512 questions
2
votes
0 answers

How to export an fbx file with assimp that can be used in Unity?

I use Assimpnet to export an fbx file with a skinned mesh, skeleton and animation from Unity at runtime. The fbx file works perfectly well when imported into Blender or Maya, but when in open Unity editor to import the file the positional values on…
Miss_Jones
  • 21
  • 3
2
votes
0 answers

How do I use the Three.js FBXLoader properly?

I'm trying to use the Three.js FBXLoader and I'm fairly new to it. When I tried loading the FBX model I exported from blender though it didn't work. Were no errors in the console and It's a little frustrating. I have tried : Inflate.min.js moving…
Kenny
  • 21
  • 1
  • 2
2
votes
1 answer

Export GameObject Unity to .fbx or .obj

I have built a building in unity, with cubes, etcetera. Now I want to use it as a single object (since using it with so many objects makes it difficult to move it from the scripts). Is it possible to export this to fbx and then have it in assets?
saulcasti
  • 23
  • 1
  • 6
2
votes
1 answer

FBX SDK: how to transform point by matrix?

I am writing a converter from FBX to custom data format using FBX SDK. I need to get mesh vertices coordinates in the world coordinate system. I know how to get mesh vertices coordinates in the local coordinate system. First I should get mesh by…
Andrey Epifantsev
  • 976
  • 1
  • 11
  • 27
2
votes
0 answers

Accessing mesh and skeleton of FBX in Qt3D

I want to expand on myselfs and karamazovbros question regarding Qt3D and import of fbx files. I have not found any documentation on how to access the files skeleten structure. The purpose of my project is to perform animations (transforms,…
Anders
  • 403
  • 3
  • 17
2
votes
1 answer

FbxGeometryLoader with QML

I want to import a .fbx file into my Scene3D, via the QMesh type, all in QML. Per the documentation, QMesh will also support the following format if the SDK is installed and the fbx geometry loader plugin is built and found So the result I want…
Anders
  • 403
  • 3
  • 17
2
votes
0 answers

How to setup QT Creator to use Autodesk FBX SDK as a library?

The Qt documentation for QMesh at the following link, https://doc.qt.io/qt-5.11/qt3drender-qmesh.html, shows that QMesh supports FBX when using the Autodesk FBX SDK. It provides no resource about how to go about setting this up, so I searched and…
karamazovbros
  • 950
  • 1
  • 11
  • 40
2
votes
1 answer

Adding Three.js AxesHelper to all children of group. Axes Helper position defaults to 0,0,0 foreach axeshelper

I'm hoping someone can clarify what is happening behind the scenes here. I have an object that I am loading via the following method: var loader = new THREE.FBXLoader(); loader.load( '../assets/models/Windia_C4D_Export.fbx', function…
user2355051
  • 605
  • 1
  • 8
  • 26
2
votes
2 answers

Unable to export Gltf model animations from Marmoset toolbag

I was trying to export an object from marmoset toolbag which is textured and animated. However, even though i could play animation in marmoset, im unable to find the same when I export it as gltf file from marmoset. It is unable to export with…
andy ram
  • 213
  • 3
  • 21
2
votes
1 answer

After converting my FBX file to a .gltf, the model is incredibly small, why?

QUESTION: After converting my FBX file to a .gltf, the model is incredibly small, why ? I tried scaling the model with frontObject.scale.set( 1000, 1000, 1000 ); but I get the following error: TypeError: Cannot read property 'set' of…
TheProgrammer
  • 1,409
  • 4
  • 24
  • 53
2
votes
0 answers

THREEJS Can't clone FBX model

I am loading FBX models for my project. I Want to create multiple objects of the same FBX model but loading each separately is very inefficient so I would like to save one loaded model and clone it. This concept is working with the .OBJ…
Elias
  • 195
  • 2
  • 13
2
votes
0 answers

Can not import Blender animation into Unity

I am relatively new to Blender and Unity. Please help me understand what do I do wrong. I try to have a simple curve animation imported into Unity. Idea is that curve grows along his path and then turns back. Here is that animation in…
2
votes
0 answers

Simplygon import textures issue

it would be great if someone can help me. I'm trying to import a textured model from Blender to Simplygon 8. The problem is that all gone fine except that the textures are not imported on Simplygon so I can't optimize them. The model is exported to…
2
votes
1 answer

FBX SDK - convert all content of fbx file to text

I'm trying to learn what is within an FBX file (all of the content), but I can't see all of them in program like Blender or Maya because my knowledge about FBX is not enough, I can't tell if there is some hidden settings in the FBX files. Actually,…
123iamking
  • 2,387
  • 4
  • 36
  • 56
2
votes
1 answer

Convert mesh to stl/obj/fbx in runtime

I am looking for a way to export a mesh into stl/obj/fbx format at runtime and save it on local files of an Android phone. How do I do this? I am willing to use a plugin(free/paid) if it exist.
Gareth Lam
  • 145
  • 1
  • 4
  • 13