2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-30 16:27:47 +00:00

feat: add loader for creating empty assets for all remaining iw5 asset types

This commit is contained in:
Jan
2024-05-24 19:17:07 +02:00
parent 68022eee05
commit 15440e8d66
63 changed files with 1022 additions and 31 deletions

View File

@@ -0,0 +1,17 @@
#include "AssetLoaderXAnim.h"
#include "Game/IW5/IW5.h"
#include "ObjLoading.h"
#include "Pool/GlobalAssetPool.h"
#include <cstring>
using namespace IW5;
void* AssetLoaderXAnim::CreateEmptyAsset(const std::string& assetName, MemoryManager* memory)
{
auto* anim = memory->Create<XAnimParts>();
memset(anim, 0, sizeof(XAnimParts));
anim->name = memory->Dup(assetName.c_str());
return anim;
}