improve QuaternionToEuler

This commit is contained in:
Perfare
2018-04-09 08:18:45 +08:00
parent 9e4be3e082
commit bc2469e11a
3 changed files with 54 additions and 11 deletions

View File

@ -140,7 +140,7 @@ namespace AssetStudio
public class ImportedAnimationKeyframedTrack : ImportedAnimationTrack
{
public List<ImportedKeyframe<Vector3>> Scalings = new List<ImportedKeyframe<Vector3>>();
public List<ImportedKeyframe<Quaternion>> Rotations = new List<ImportedKeyframe<Quaternion>>();
public List<ImportedKeyframe<Vector3>> Rotations = new List<ImportedKeyframe<Vector3>>();
public List<ImportedKeyframe<Vector3>> Translations = new List<ImportedKeyframe<Vector3>>();
}