summaryrefslogtreecommitdiff
path: root/shared/src/resources.rs
diff options
context:
space:
mode:
Diffstat (limited to 'shared/src/resources.rs')
-rw-r--r--shared/src/resources.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/shared/src/resources.rs b/shared/src/resources.rs
index 5e2e268..bab9a43 100644
--- a/shared/src/resources.rs
+++ b/shared/src/resources.rs
@@ -92,7 +92,9 @@ resource_dicts!(
}
pub struct AnimationPart {
- channel[multi]: Resource<AnimationChannel>,
+ name: String,
+ channel[multi]: AnimationChannel,
+ duration: f32,
}
pub struct AnimationChannel {
@@ -105,7 +107,7 @@ resource_dicts!(
t_joint_scale: (u32, u32),
t_light_translation: u32,
time: Resource<Vec<f32>>,
- value: Resource<Vec<Vec3A>>,
+ value: Resource<Vec<f32>>,
}
pub struct AvatarInfoPart {