-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathACLStatsDumpCommandlet.h
39 lines (32 loc) · 1.02 KB
/
ACLStatsDumpCommandlet.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once
// Copyright 2018 Nicholas Frechette. All Rights Reserved.
#include "Commandlets/Commandlet.h"
#include "ACLStatsDumpCommandlet.generated.h"
/*
* This commandlet is used to extract and dump animation compression statistics.
*
* See cpp implementation for example usage and supported arguments.
*/
UCLASS()
class UACLStatsDumpCommandlet : public UCommandlet
{
GENERATED_UCLASS_BODY()
public:
virtual int32 Main(const FString& Params) override;
FString ACLRawDir;
FString OutputDir;
bool PerformExhaustiveDump;
bool PerformCompression;
bool PerformClipExtraction;
bool TryAutomaticCompression;
bool TryACLCompression;
bool TryKeyReductionRetarget;
bool TryKeyReduction;
bool ResumeTask;
bool SkipAdditiveClips;
class UAnimBoneCompressionSettings* AutoCompressionSettings;
class UAnimBoneCompressionSettings* ACLCompressionSettings;
class UAnimBoneCompressionSettings* KeyReductionCompressionSettings;
class UAnimBoneCompressionCodec_ACL* ACLCodec;
class UAnimCompress_RemoveLinearKeys* KeyReductionCodec;
};