How To Make UI For Games Made With Quick Engine?
I am making a game with Quick Engine and don't know how to make UI like Player HP or Player Energy.
I am making a game with Quick Engine and don't know how to make UI like Player HP or Player Energy.
I think you can just use the default drawing API of microStudio and it wouldn't interfare with Quick.
Sorry if doesn't work never did UI:)
Yes just as MrBoi said, you can draw your UI elements on top of the scene rendered by Quick Engine (thus after the call to Quick.draw()
). Example:
draw = function()
Quick.draw() // your quick engine scene is rendered here
screen.fillRect(-50,-80,30,5,"rgb(128,255,255)") // draw a health bar
end