Skip to content

FBX Importer of Unreal Engine

cpp
// build.cs
PrivateIncludePaths.AddRange(
    new string[] {
        // ... add other private include paths required here ...
        "../../../../Source/Editor/UnrealEd/Private", // TODO: Fix this, for now it's needed for the fbx exporter
    });

// Add this at the end of file
AddEngineThirdPartyPrivateStaticDependencies(Target, "FBX");



// YourClass.cpp
#include "FbxImporter.h"

// Get Instance
UnFbx::FFbxImporter* Importer = UnFbx::FFbxImporter::GetInstance();