Fix ball animation
This commit is contained in:
parent
90b583df44
commit
a44ed295a2
@ -275,7 +275,15 @@ export const CC2_TILESET_LAYOUT = {
|
|||||||
popwall: [8, 10],
|
popwall: [8, 10],
|
||||||
popwall2: [8, 10],
|
popwall2: [8, 10],
|
||||||
gravel: [9, 10],
|
gravel: [9, 10],
|
||||||
ball: [[10, 10], [11, 10], [12, 10], [13, 10], [14, 10]],
|
ball: [
|
||||||
|
// appropriately, this animation ping-pongs
|
||||||
|
[10, 10], [11, 10], [12, 10], [13, 10],
|
||||||
|
[14, 10], [13, 10], [12, 10], [11, 10],
|
||||||
|
// FIXME the ball bounces so it specifically needs to play its animation every move; this
|
||||||
|
// defeats the ½x slowdown. it's dumb and means this anim as written doesn't match cc2
|
||||||
|
[10, 10], [11, 10], [12, 10], [13, 10],
|
||||||
|
[14, 10], [13, 10], [12, 10], [11, 10],
|
||||||
|
],
|
||||||
steel: {
|
steel: {
|
||||||
// Wiring!
|
// Wiring!
|
||||||
base: [15, 10],
|
base: [15, 10],
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user