Refactor + render animation tweaks + updated frame properties + bug fixes

This commit is contained in:
2025-12-17 23:02:00 -05:00
parent b4b4fe3714
commit 119bbc4081
63 changed files with 1964 additions and 1701 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
#include "xml_.h"
#include "filesystem_.h"
#include "math_.h"
#include "path_.h"
using namespace anm2ed::util;
using namespace tinyxml2;
namespace filesystem = anm2ed::util::filesystem;
namespace anm2ed::util::xml
{
@@ -27,7 +27,7 @@ namespace anm2ed::util::xml
{
std::string temp{};
auto result = query_string_attribute(element, attribute, &temp);
if (result == XML_SUCCESS) *out = filesystem::path_from_utf8(temp);
if (result == XML_SUCCESS) *out = path::from_utf8(temp);
return result;
}