Hello,
I’m trying to use the built in FBX importer of UE4. For this, what I seem to need is FbxImporter.h
. However, when I’m trying to include it, I’m getting this error :
Cannot open include file: 'FbxImporter.h': No such file or directory
Here is my Build.cs file :
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class ImportIntoLevel : ModuleRules
{
public ImportIntoLevel(TargetInfo Target)
{
PublicIncludePaths.AddRange(
new string[] {
"ImportIntoLevel/Public",
"Editor/UnrealEd/Public"
// ... add public include paths required here ...
}
);
PrivateIncludePaths.AddRange(
new string[] {
"ImportIntoLevel/Private",
"Editor/UnrealEd/Private"
// ... add other private include paths required here ...
}
);
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"InputCore",
"Projects",
"UnrealEd",
"Networking",
"Sockets"
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Projects",
"InputCore",
"UnrealEd",
"LevelEditor",
"CoreUObject",
"Engine",
"Slate",
"SlateCore"
// ... add private dependencies that you statically link with here ...
}
);
AddEngineThirdPartyPrivateStaticDependencies(Target,
"FBX"
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}
I followed the .Build.cs found in the UE4 code where they needed FbxImporter.h, so I’ve got a similar Build.cs file, but it’s not working. Any idea ?
EDIT : here is what I get when I try to include the absolute path to the file :
Severity Code Description Project File Line Suppression State
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 771
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 786
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 797
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 797
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 846
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 846
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 857
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 869
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 869
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 869
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 900
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 948
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 974
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1035
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1083
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1105
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1121
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1125
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1125
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1133
Error (active) "FbxNode" is not a type name PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1137
Error C1083 Cannot open include file: 'fbxsdk.h': No such file or directory PythonPluginTest C:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 48
Error (active) cannot open source file "fbxsdk.h" PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 48
Error (active) expected an expression PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 758
Error (active) expected an expression PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1133
Error Failed to produce item: D:\Unreal Projects\PythonPluginTest\Plugins\ImportIntoLevel\Binaries\Win64\UE4Editor-ImportIntoLevel.dll PythonPluginTest D:\Unreal Projects\PythonPluginTest\Intermediate\ProjectFiles\ERROR 1
Error (active) FbxArray is not a template PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 758
Error (active) FbxArray is not a template PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1133
Error (active) FbxMap is not a template PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 758
Error (active) identifier "FbxAMatrix" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 236
Error (active) identifier "FbxAMatrix" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 237
Error (active) identifier "FbxAMatrix" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 629
Error (active) identifier "FbxAMatrix" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 786
Error (active) identifier "FbxAMatrix" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 797
Error (active) identifier "FbxAMatrix" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 802
Error (active) identifier "FbxAnimCurve" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1088
Error (active) identifier "FbxAnimCurve" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1088
Error (active) identifier "FbxAnimCurve" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1093
Error (active) identifier "FbxAnimCurve" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1093
Error (active) identifier "FbxAnimCurve" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1158
Error (active) identifier "FbxAnimCurve" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1164
Error (active) identifier "FbxAnimCurveKey" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1116
Error (active) identifier "FbxAnimLayer" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1105
Error (active) identifier "FbxAnimStack" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 450
Error (active) identifier "FbxAnimStack" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 464
Error (active) identifier "FbxAnimStack" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 481
Error (active) identifier "FbxAnimStack" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1026
Error (active) identifier "FbxCamera" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 828
Error (active) identifier "FbxCamera" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1097
Error (active) identifier "FbxCamera" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1101
Error (active) identifier "FbxCluster" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 586
Error (active) identifier "FbxDouble" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 234
Error (active) identifier "FbxDouble3" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 228
Error (active) identifier "FbxDouble3" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 229
Error (active) identifier "FbxFileTexture" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 983
Error (active) identifier "FbxGeometryConverter" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 737
Error (active) identifier "FbxImporter" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 739
Error (active) identifier "FbxLight" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 812
Error (active) identifier "FbxLight" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 820
Error (active) identifier "FbxManager" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 738
Error (active) identifier "FbxMesh" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 845
Error (active) identifier "FbxMesh" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 880
Error (active) identifier "FbxMesh" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1000
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 337
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 337
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 345
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 345
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 345
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 354
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 354
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 361
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 361
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 374
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 388
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 419
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 435
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 445
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 445
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 450
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 464
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 464
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 471
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 471
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 481
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 481
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 491
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 518
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 542
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 542
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 553
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 553
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 562
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 570
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 570
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 578
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 578
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 586
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 594
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 594
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 604
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 612
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 620
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 643
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 643
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 643
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 650
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 650
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 660
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 660
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 670
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 670
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 670
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 680
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 680
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 680
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 689
Error (active) identifier "FbxNode" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 758
Error (active) identifier "FbxObject" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 532
Error (active) identifier "FbxPose" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1133
Error (active) identifier "FbxProperty" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 235
Error (active) identifier "FbxProperty" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1101
Error (active) identifier "FbxQuaternion" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 231
Error (active) identifier "FbxQuaternion" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 232
Error (active) identifier "FbxQuaternion" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 233
Error (active) identifier "FbxScene" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 714
Error (active) identifier "FbxShape" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 435
Error (active) identifier "FbxShape" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 846
Error (active) identifier "FbxShape" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 857
Error (active) identifier "FbxShape" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 880
Error (active) identifier "FbxSkin" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 845
Error (active) identifier "FbxString" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 243
Error (active) identifier "FbxString" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 244
Error (active) identifier "FbxString" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 527
Error (active) identifier "FbxString" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 758
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 253
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 254
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 255
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 259
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 729
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 846
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 917
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 929
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 956
Error (active) identifier "FbxSurfaceMaterial" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 967
Error (active) identifier "FbxTime" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 900
Error (active) identifier "FbxTime" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 900
Error (active) identifier "FbxTimeSpan" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 450
Error (active) identifier "FbxTimeSpan" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 464
Error (active) identifier "FbxTimeSpan" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 481
Error (active) identifier "FbxTimeSpan" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1158
Error (active) identifier "FbxTimeSpan" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 1164
Error (active) identifier "FbxVector4" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 226
Error (active) identifier "FbxVector4" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 227
Error (active) identifier "FbxVector4" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 230
Error (active) identifier "FbxVector4" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 239
Error (active) identifier "FbxVector4" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 240
Error (active) identifier "FbxVector4" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 241
Error (active) identifier "FbxVector4" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 242
Error (active) identifier "FbxVector4" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Private\FbxImporter.h 900
Error (active) identifier "UNiagaraScript" is undefined PythonPluginTest c:\Program Files\Epic Games\4.12\Engine\Source\Editor\UnrealEd\Classes\Niagara\NiagaraNodeFunctionCall.h 15
Error MSB3073 The command ""C:\Program Files\Epic Games\4.12\Engine\Build\BatchFiles\Rebuild.bat" PythonPluginTestEditor Win64 Development "D:\Unreal Projects\PythonPluginTest\PythonPluginTest.uproject" -waitmutex" exited with code -1. PythonPluginTest C:\Program Files (x86)\MSBuild\Microsoft.Cpp\v4.0\V140\Microsoft.MakeFile.Targets 42