Skip to content

Commit 668026e

Browse files
committed
case
1 parent 91c55cc commit 668026e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/bevy_gltf/src/lib.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ pub enum GltfAnimationInterpolation {
7878
CubicSpline,
7979
}
8080

81-
/// How a property of a gLTF node should be animated. The property and its value can be found
81+
/// How a property of a glTF node should be animated. The property and its value can be found
8282
/// through the [`GltfNodeAnimationKeyframes`] attribute.
8383
#[derive(Clone, Debug)]
8484
pub struct GltfNodeAnimation {
@@ -87,7 +87,7 @@ pub struct GltfNodeAnimation {
8787
pub interpolation: GltfAnimationInterpolation,
8888
}
8989

90-
/// A gLTF animation, listing how each node (by its index) that is part of it should be animated.
90+
/// A glTF animation, listing how each node (by its index) that is part of it should be animated.
9191
#[derive(Default, Clone, TypeUuid, Debug)]
9292
#[uuid = "d81b7179-0448-4eb0-89fe-c067222725bf"]
9393
pub struct GltfAnimation {
@@ -112,7 +112,7 @@ impl Default for GltfNodeAnimation {
112112
}
113113
}
114114

115-
/// A gLTF node that is part of an animation, with its index.
115+
/// A glTF node that is part of an animation, with its index.
116116
#[derive(Component, Debug, Clone, Reflect, Default)]
117117
#[reflect(Component)]
118118
pub struct GltfAnimatedNode {

0 commit comments

Comments
 (0)