Skip to content

Commit

Permalink
Removed mentions of obsolete Catmull-Rom interpolation mode
Browse files Browse the repository at this point in the history
  • Loading branch information
warrenm committed May 29, 2018
1 parent 9435dda commit 9929b05
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Framework/GLTF/Headers/GLTFEnums.h
Expand Up @@ -175,5 +175,4 @@ typedef NS_ENUM(NSInteger, GLTFInterpolationMode) {
GLTFInterpolationModeStep,
GLTFInterpolationModeLinear,
GLTFInterpolationModeCubic,
GLTFInterpolationModeCatmullRom,
};
2 changes: 1 addition & 1 deletion Framework/GLTF/Source/GLTFAsset.m
Expand Up @@ -1117,7 +1117,7 @@ - (BOOL)loadAnimations:(NSArray *)animationsMap {
return YES;
}

NSArray *interpolationModes = @[ @"STEP", @"LINEAR", @"CUBICSPLINE", @"CATMULLROMSPLINE" ];
NSArray *interpolationModes = @[ @"STEP", @"LINEAR", @"CUBICSPLINE" ];

NSMutableArray *animations = [NSMutableArray arrayWithCapacity:animationsMap.count];

Expand Down
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -191,7 +191,6 @@ Below is a checklist of glTF features and their current level of support.
- [x] Linear interpolation
- [ ] Discrete animations
- [ ] Cubic spline interpolation
- [ ] Catmull-Rom interpolation

#### Skinning
- [x] Joint matrix calculation
Expand All @@ -203,7 +202,7 @@ Below is a checklist of glTF features and their current level of support.
#### Extensions
- [ ] KHR_materials_pbrSpecularGlossiness
- [ ] KHR_materials_common
- [] KHR_lights
- [ ] KHR_lights
- [x] KHR_materials_unlit
- [x] KHR_texture_transform
- [x] EXT_pbr_attributes
Expand Down

0 comments on commit 9929b05

Please sign in to comment.