-
-
Notifications
You must be signed in to change notification settings - Fork 49
[FR] Update Keyframe Interpolation Field to Object Format in JSON #240
Copy link
Copy link
Closed
Labels
✨ EnhancementNew feature or requestNew feature or request
Description
This way interpolation is encapsulated within its own object. This makes it clear that all the parameters under interpolation are related to the interpolation settings, improving readability and maintainability. This also simplifies parsing for plugin developers.
"interpolation": {
"type": "bezier",
"bezier_linked": true,
"bezier_left_time": [-0.08, -0.02333, -0.10667],
"bezier_left_value": [34.79459, 48.56599, 15.0942],
"bezier_right_time": [0.08, 0.02333, 0.10667],
"bezier_right_value": [-34.79459, -48.56599, -15.0942]
}
"interpolation": {
"type": "linear",
"easing": "easeInOutQuart",
"easingArgs": []
}
"interpolation": {
"type": "catmullrom"
}
"interpolation": {
"type": "step"
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
✨ EnhancementNew feature or requestNew feature or request