Format code.
This commit is contained in:
parent
df71c8ff0a
commit
3e83b4e9d3
|
@ -99,12 +99,12 @@ struct GltfOptions {
|
||||||
int quantBitsNormal = 10;
|
int quantBitsNormal = 10;
|
||||||
int quantBitsColor = 8;
|
int quantBitsColor = 8;
|
||||||
int quantBitsGeneric = 8;
|
int quantBitsGeneric = 8;
|
||||||
// int compressionLevel = -1; // 7
|
// int compressionLevel = -1; // 7
|
||||||
// int quantBitsPosition = -1; // 14
|
// int quantBitsPosition = -1; // 14
|
||||||
// int quantBitsTexCoord = -1; // 10
|
// int quantBitsTexCoord = -1; // 10
|
||||||
// int quantBitsNormal = -1; // 10
|
// int quantBitsNormal = -1; // 10
|
||||||
// int quantBitsColor = -1; // 8
|
// int quantBitsColor = -1; // 8
|
||||||
// int quantBitsGeneric = -1; // 8
|
// int quantBitsGeneric = -1; // 8
|
||||||
|
|
||||||
bool enabledAnimation = false;
|
bool enabledAnimation = false;
|
||||||
int animationCompressionLevel = -1; // 5
|
int animationCompressionLevel = -1; // 5
|
||||||
|
|
|
@ -19,7 +19,7 @@ AnimationData::AnimationData(std::string name)
|
||||||
AnimationData::AnimationData(std::string name, std::shared_ptr<draco::KeyframeAnimation> dracoKeyframeAnimation)
|
AnimationData::AnimationData(std::string name, std::shared_ptr<draco::KeyframeAnimation> dracoKeyframeAnimation)
|
||||||
: Holdable(),
|
: Holdable(),
|
||||||
name(std::move(name)),
|
name(std::move(name)),
|
||||||
dracoKeyframeAnimation(dracoKeyframeAnimation){}
|
dracoKeyframeAnimation(dracoKeyframeAnimation) {}
|
||||||
|
|
||||||
void AnimationData::AddTimestamps(const AccessorData& timeAccessor) {
|
void AnimationData::AddTimestamps(const AccessorData& timeAccessor) {
|
||||||
this->timeAccessor = timeAccessor.ix;
|
this->timeAccessor = timeAccessor.ix;
|
||||||
|
|
Loading…
Reference in New Issue