We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 83911df + 55c64d1 commit fbfaed9Copy full SHA for fbfaed9
package.json
@@ -2,7 +2,7 @@
2
"type": "module",
3
"name": "animated_java",
4
"title": "Animated Java",
5
- "version": "0.3.9a",
+ "version": "0.3.9b",
6
"min_blockbench_version": "4.6.5",
7
"author": {
8
"name": "Titus Evans (SnaveSutit)",
src/rendering/animationRenderer.ts
@@ -96,7 +96,7 @@ export function getAnimationNodes(
96
const animator = animation.animators[node.node.uuid]!
97
if (
98
animator?.keyframes
99
- .filter(k => k.time === time - 0.05)
+ .filter(k => k.time === roundToN(time - 0.05, 20))
100
.find(k => k.data_points.length === 2)
101
) {
102
interpolation = 'instant'
0 commit comments