Bounce animation on tilemap cell

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By CKO

Hello everyone, I have a few 2D isometric tilemaps stacked on top of each other. I want to add a bounce animation on a single tilemap cell when the cell is selected. Does anyone know how this can be done in Godot? I want all cells to remain in place and only the selected one to bounce.

:bust_in_silhouette: Reply From: Dlean Jeans

I would create a Sprite or a node of some kind with the bouncing animation for this every time you click on a tile and free it afterwards.

The isometric nature of the of the tilemap makes this difficult. It would have been useful if it were possible to apply an offset on a single cell, but this doesn’t seem possible in Godot.

CKO | 2019-06-01 08:04