mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 15:28:11 -05:00
ObjLoading/ObjWriting: Initial skeleton for loading and writing obj files
This commit is contained in:
@ -6,8 +6,8 @@
|
||||
#include "Utils/PathUtils.h"
|
||||
#include "Utils/FileAPI.h"
|
||||
|
||||
#include <cstdlib>
|
||||
#include <regex>
|
||||
#include "ObjLoading.h"
|
||||
|
||||
const CommandLineOption* optionHelp = CommandLineOption::Builder::Create()
|
||||
.WithShortName("?")
|
||||
@ -148,6 +148,9 @@ int main(const int argc, const char** argv)
|
||||
return 1;
|
||||
}
|
||||
|
||||
ObjLoading::LoadReferencedContainersForZone(zone);
|
||||
ObjLoading::LoadObjDataForZone(zone);
|
||||
|
||||
if(!HandleZone(zone, &argumentParser))
|
||||
{
|
||||
return 1;
|
||||
|
Reference in New Issue
Block a user