-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAnimationWrapper.cs
130 lines (115 loc) · 4.33 KB
/
AnimationWrapper.cs
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
using System.Xml.Serialization;
using UnityEngine;
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Linq;
namespace Tutorials
{
[Serializable]
public class AnimationWrapper
{
/// <summary>
/// The animation entity's name that will be visible to users
/// </summary>
[XmlAttribute]
public string Name { get; set; }
/// <summary>
/// The description that will be visible to users
/// </summary>
[XmlAttribute]
public string Description { get; set; }
/// <summary>
/// Speed at which the animation runs, relative to the speed at which it was recorded.
/// The user can change this value between 0 and 2 (standing still up to double speed)
/// </summary>
[XmlAttribute]
public double Speed { get; set; } = 1;
/// <summary>
/// Determines where the animation should start relative to the complete duration of the animation
/// (StartFrame == 0.5 means the animation begins from the middle.)
/// </summary>
[XmlAttribute]
public double StartFrame { get; set; } = 0;
/// <summary>
/// Determines where the animation should end relative to the complete duration of the animation
/// (StartFrame == 0.5 means the animation ends from the middle.)
/// </summary>
[XmlAttribute]
public double EndFrame { get; set; } = 1;
/// <summary>
/// Determines whether the left hand should be visible
/// </summary>
[XmlAttribute]
public bool LeftHand { get; set; } = true;
/// <summary>
/// Determines whether the right hand should be visible
/// </summary>
[XmlAttribute]
public bool RightHand { get; set; } = true;
/// <summary>
/// localPosition.x value of the animation specific point of reference.
/// </summary>
[XmlAttribute]
public double position_x { get; set; } = 0;
/// <summary>
/// localPosition.y value of the animation specific point of reference.
/// </summary>
[XmlAttribute]
public double position_y { get; set; } = 0;
/// <summary>
/// localPosition.z value of the animation specific point of reference.
/// </summary>
[XmlAttribute]
public double position_z { get; set; } = 0;
/// <summary>
/// localRotation.x value of the animation specific point of reference.
/// </summary>
[XmlAttribute]
public double rotation_x { get; set; } = 0;
/// <summary>
/// localRotation.y value of the animation specific point of reference.
/// </summary>
[XmlAttribute]
public double rotation_y { get; set; } = 0;
/// <summary>
/// localRotation.z value of the animation specific point of reference.
/// </summary>
[XmlAttribute]
public double rotation_z { get; set; } = 0;
/// <summary>
/// localRotation.w value of the animation specific point of reference.
/// </summary>
[XmlAttribute]
public double rotation_w { get; set; } = 1;
/// <summary>
/// contains the actual animation object. This will never be directly stored locally or online. The corresponding data will be stored in a blob file separately
/// </summary>
[XmlIgnore]
InputAnimation animation;
/// <summary>
/// if animation has not been filled yet, the public Animation access field will first either load the animation from a local blob file, or if that fails will download it from the cloud.
/// </summary>
[XmlIgnore]
public InputAnimation Animation
{
get
{
if (animation == null)
{
try
{
animation = FileHandler.LoadAnimationFromLocalBlobFile(Name);
}
catch (Exception e)
{
Debug.Log(e.Message + "Animation " + Name + " could not be loaded.");
return null;
}
}
return animation;
}
set => animation = value;
}
}
}