 |
AssimpImporterImportFileToNativeAssimpScene(Byte, String) Method |
ImportFileToNativeAssimpScene reads the specified byte array and returns ImportedAssimpFile with native Assimp's Scene object.
Assimp's Scene object can be manually converted into SceneNodes by using AssimpConverter class.
This method does not change the
NativeAssimpScene
property.
Namespace: Ab4d.SharpEngine.AssimpAssembly: Ab4d.SharpEngine.Assimp (in Ab4d.SharpEngine.Assimp.dll) Version: 4.1.9680+a1b1e43de1ad9a7e35472c33948d688d7b40ef79
Syntaxpublic ImportedAssimpFile? ImportFileToNativeAssimpScene(
byte[] fileContent,
string formatHint
)
Parameters
- fileContent Byte
- file content as byte array
- formatHint String
- file extension to serve as a hint to Assimp to choose which importer to use - for example ".dae"
Return Value
ImportedAssimpFileImportedAssimpFile with native Assimp's Scene object
See Also