summaryrefslogtreecommitdiff
path: root/ZAPD/HighLevel/HLAnimationIntermediette.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ZAPD/HighLevel/HLAnimationIntermediette.cpp')
-rw-r--r--ZAPD/HighLevel/HLAnimationIntermediette.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/ZAPD/HighLevel/HLAnimationIntermediette.cpp b/ZAPD/HighLevel/HLAnimationIntermediette.cpp
index 9543bc0..1b64af1 100644
--- a/ZAPD/HighLevel/HLAnimationIntermediette.cpp
+++ b/ZAPD/HighLevel/HLAnimationIntermediette.cpp
@@ -54,14 +54,14 @@ HLAnimationIntermediette* HLAnimationIntermediette::FromZAnimation(ZAnimation* z
{
HLAnimationIntermediette* anim = new HLAnimationIntermediette();
- anim->limit = zAnim->limit;
+ /*anim->limit = zAnim->limit;
anim->frameCount = zAnim->frameCount;
for (uint16_t item : zAnim->rotationValues)
anim->rotationValues.push_back(item);
for (RotationIndex item : zAnim->rotationIndices)
- anim->rotationIndices.push_back(item);
+ anim->rotationIndices.push_back(item);*/
return anim;
}
@@ -70,14 +70,14 @@ ZAnimation* HLAnimationIntermediette::ToZAnimation()
{
ZAnimation* zAnim = new ZAnimation();
- zAnim->limit = limit;
+ /*zAnim->limit = limit;
zAnim->frameCount = frameCount;
for (uint16_t item : rotationValues)
zAnim->rotationValues.push_back(item);
for (RotationIndex item : rotationIndices)
- zAnim->rotationIndices.push_back(item);
+ zAnim->rotationIndices.push_back(item);*/
return zAnim;
}