Skip to content

Instantly share code, notes, and snippets.

@ando-takahiro
Last active July 28, 2017 01:26
Show Gist options
  • Select an option

  • Save ando-takahiro/5f6098a83e2bfb05feb6426315deb2b5 to your computer and use it in GitHub Desktop.

Select an option

Save ando-takahiro/5f6098a83e2bfb05feb6426315deb2b5 to your computer and use it in GitHub Desktop.
A memo to build FbxExporter for Unity 3D on Ubuntu

How to build FbxExporter

Steps:

$ means CLI command.

  • Import FbxExporter to your project
  • FBXSDK install
  • $ sudo apt install cmake
  • $ cd $FBX_EXPORTER_PARENT
  • $ git clone $FBX_EXPORTER_URL
  • $ cd Plugin
  • $ cmake .
  • $ make
  • $ cp FbxExporter/libFbxExporterCore.so $PROJDIR/Assets/UTJ/FbxExporter/Plugins/x86_64

Variables:

  • $FBX_EXPORTER_PARENT: The parent directory of FbxExporter repository
  • $FBX_EXPORTER: Your local directory of FbxExporter repository
  • $FBX_EXPORTER_URL: The git URL of FbxExporter(maybe, [email protected]:unity3d-jp/FbxExporter.git)
  • $PROJDIR: The root directory of your project
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment