mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-04-22 20:49:18 +08:00
22 lines
420 B
C
22 lines
420 B
C
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <string>
|
||
|
#include <unordered_set>
|
||
|
|
||
|
struct AsFbxContext
|
||
|
{
|
||
|
|
||
|
fbxsdk::FbxManager* pSdkManager;
|
||
|
fbxsdk::FbxScene* pScene;
|
||
|
fbxsdk::FbxArray<fbxsdk::FbxFileTexture*>* pTextures;
|
||
|
fbxsdk::FbxArray<fbxsdk::FbxSurfacePhong*>* pMaterials;
|
||
|
fbxsdk::FbxExporter* pExporter;
|
||
|
fbxsdk::FbxPose* pBindPose;
|
||
|
|
||
|
std::unordered_set<std::string> framePaths;
|
||
|
|
||
|
AsFbxContext();
|
||
|
~AsFbxContext();
|
||
|
};
|