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
endFiles
carousel-bk.love 119 kB
Nov 14, 2024
carousel-bk-safe.love 119 kB
Nov 14, 2024
Get Lua Carousel
Lua Carousel
Write programs on desktop and mobile
| Status | In development |
| Category | Tool |
| Author | Kartik Agaram |
| Tags | LÖVE |
More posts
- Programming on your device with your preferred language65 days ago
- Lua Carousel: program on the device you have, with docs at your fingertipsMay 12, 2025
- Pong Wars, MMO editionFeb 16, 2025
- New version after 41 days, and stop-motion animationFeb 15, 2025
- Drawing with a pen on a pendulumJan 11, 2025
- New version after 16 daysJan 04, 2025
- New version after 9 daysDec 19, 2024
- New version after 3 daysNov 17, 2024
- Turn your phone or tablet into a chess clockNov 01, 2024
Comments
Log in with itch.io to leave a comment.
Great Work , Keep it up!