8 months agokrum555: I will make the speedometer thing when i have more time in the meanwhile thanks for the link to the api really helped me
9 months agochad64: --here's a code that displays the y velocity of whatever object in your world has an ID of 1, you can paste it in a luascript to try it
function init() something = world:get_entity(1) end
function step() vel_x, vel_y = something:get_velocity() game:show_numfeed(vel_y) end
9 months agokrum555: @chad64: i have way too many questions about programming i don't know where to begin. For example how to use get_velocity to well get the velocity of the thing you are trying to make? float x get_velocity() and get_velocity(x) return x don't work i don't really know how to make it work. If only there was a proper IDE in game that would show me syntax help.
9 months agochad64: @krum555: Thank you! glad you enjoy them ^-^ i can help with lua or building stuff if you're having trouble
9 months agokrum555: Great job nicely done 10/10 sans music :D the first one is very nice too thanks for always making such good levels i wish i could be as good as you :)
9 months agochad64: Ill add a better description soon
function init()
something = world:get_entity(1)
end
function step()
vel_x, vel_y = something:get_velocity()
game:show_numfeed(vel_y)
end