New version after 40 days
Lua Carousel » Devlog
Today's version has 5 minor bugfixes. The repository has the details. But the major quality of life improvement that merits a new version: the code editor spreads out over the whole screen width on phones with small screens. Thanks Origedit for the suggestion.
g = love.graphics arc = g.arc color = g.setColor pi = math.pi angle = 1 speed = 4 -- chomps/s function car.draw() color(0.7, 0.7, 0) arc('fill', 100,100, 30, 2*pi-angle, angle) end function car.update(dt) if angle > 1 then speed = -speed angle = 1 elseif angle < 0 then speed = -speed angle = 0 end angle = angle + speed*2*dt end
Files
carousel-bk.love 119 kB
1 day ago
carousel-bk-safe.love 119 kB
1 day ago
Get Lua Carousel
Lua Carousel
Write programs on desktop and mobile
Status | In development |
Category | Tool |
Author | Kartik Agaram |
Tags | LÖVE |
More posts
- Turn your phone or tablet into a chess clock15 days ago
- Guest program: bouncing balls31 days ago
- New version after 3 months, and turtle graphics42 days ago
- Interactively zooming in to the Mandelbrot set on a touchscreen61 days ago
- A little timer app62 days ago
- New version after 4 monthsJun 28, 2024
- Visualizing the digits of πMay 04, 2024
- A little recursion problemApr 15, 2024
- Drawing histogramsApr 03, 2024
Comments
Log in with itch.io to leave a comment.
Great Work , Keep it up!