Search found 4 matches

by Lua_Beginner
Wed Apr 23, 2025 9:51 pm
Forum: General
Topic: Moving Sprites Cross Screen?
Replies: 8
Views: 673

Re: Moving Sprites Cross Screen?

Thanks Dusoft for wishing me good luck :)

Thanks RNavega for those interesting tutorials, it gong take bit of time to get used Lua Programming Language and see where it take me from there.
by Lua_Beginner
Tue Apr 22, 2025 7:55 pm
Forum: General
Topic: Moving Sprites Cross Screen?
Replies: 8
Views: 673

Re: Moving Sprites Cross Screen?

It is ok as I got it working. local x = 0 function love.load() -- Everything will be loaded here Beast=love.graphics.newImage("Beast.png") end function love.update(dt) -- Everything will be updated here x=x+1-dt end function love.draw() -- Everything will be drawn here love.graphics.draw(B...
by Lua_Beginner
Tue Apr 22, 2025 4:14 pm
Forum: General
Topic: Moving Sprites Cross Screen?
Replies: 8
Views: 673

Re: Moving Sprites Cross Screen?

thanks for helping me but I get error which show code blow local x = 0 function love.load() -- Everything will be loaded here Beast=love.graphics.newImage("Beast.png") end function love.update(dt) -- Everything will be updated here x=x*dt end function love.draw( -- Everything will be drawn...
by Lua_Beginner
Mon Apr 21, 2025 9:04 pm
Forum: General
Topic: Moving Sprites Cross Screen?
Replies: 8
Views: 673

Moving Sprites Cross Screen?

Hello all, I have start to learning LUA and start doing basic LUA like variable, text on screen, Sprites on screen and on. I was trying to do moving sprites to try move sprite cross the screen but it not working for some reason. local x = 0 function love.load() -- Everything will be loaded here Beas...