Is there any way to load FBX file using ARKit?

后端 未结 4 820
时光说笑
时光说笑 2021-01-02 17:15

In my project I am projecting 3d files using ARKit. I am able to project .dae and .obj format models.

Is there anyway I could load .fb

4条回答
  •  粉色の甜心
    2021-01-02 18:03

    June 2020

    To convert FBX to USDZ you need the usdzconvert utility from Apple. To get it to work, read the install instructions carefully.

    You will need both the "FBX Python SDK" and the "FBX Python Bindings" from here.

    Please note that the current (June 2020) version of the FBX Python SDK is 2020.1, so you'll have to change the following line in USB.command

    # export PYTHONPATH=$PYTHONPATH:/Applications/Autodesk/FBX\ Python\ SDK/2019.0/lib/Python27_x86
    

    to

    export PYTHONPATH=$PYTHONPATH:/Applications/Autodesk/FBX\ Python\ SDK/2020.1/lib/Python27_ub
    

    To use usdzconvert, double-click /Applications/usdpython/USD.command and type usdzconvert into the terminal that opens up.

    That's it!

提交回复
热议问题