diff options
| author | Anghelo Carvajal <angheloalf95@gmail.com> | 2021-06-23 16:45:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-23 16:45:44 -0400 |
| commit | b1f0bcd9a98f021f42bab606665425332576d9ce (patch) | |
| tree | 2c26a927de1882406a7fc2890bc9bc20c5cfbaef /ZAPD/Main.cpp | |
| parent | d7f580bdf9661ea5b1b7e7e93672f8c363049ef4 (diff) | |
Add support to `LegacyLimb`s and `LegacyAnimation`, making `object_human` extractable (#152)
* proof of concept
* Add hex type to ZScalar
* minor fixes
* BetaAnimation proof of concept
* FrameData and JointKey
* Fix warnings
* Rename betalimb to legacylimb and move with the rest of limbs
* Rename BetaAnimation to LegacyAnimation
* Add verboseunaccounted
* Add limb table
* Use ZLimbTable in ZSkeleton
* run format
* Update docs
* AnimationHeader2 -> LegacyAnimationHeader
Diffstat (limited to 'ZAPD/Main.cpp')
| -rw-r--r-- | ZAPD/Main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ZAPD/Main.cpp b/ZAPD/Main.cpp index 54ea447..154e711 100644 --- a/ZAPD/Main.cpp +++ b/ZAPD/Main.cpp @@ -241,6 +241,10 @@ int main(int argc, char* argv[]) { Globals::Instance->warnUnaccounted = true; } + else if (arg == "-vu" || arg == "--verbose-unaccounted") // Verbose unaccounted + { + Globals::Instance->verboseUnaccounted = true; + } } if (Globals::Instance->verbosity >= VerbosityLevel::VERBOSITY_INFO) |
