Pretty simple to understand! How did you do the trail effect? I thought it was really cool, but it glitched and disappeared after a while!
Viewing post in Dig Up! jam comments
Thanks for the comment! For the trail effect, I used the position of the drill to draw a permanent dark line over the background (= by adding the position at each frame to an array and then use the array to draw the line). I also found out after submitting that it bugs out after a while - I think it might be because the polyline function (which I used in Godot) has some limit on the length of the line, so if the array gets too long it bugs out. I guess removing the "oldest" point in the array at each frame would solve it.