Answers for "love2d"

Lua
0

We explore and become more #LoveToBeTechM

dkefjgjgjjfgjggfgf
Posted by: Guest on April-06-2021
5

love2d

Love2D is a Lua based engine with a lot of docummentation
to develop simple or complex 2D games
Posted by: Guest on November-20-2020
2

love2d

sound = love.audio.newSource("pling.wav", "static") -- the "static" is better for short sound effects (load the file into memory)
music = love.audio.newSource("techno.ogg", "stream") -- the "stream" is better for longer music tracks (stream the file from disk)

sound:play()
music:play()

music:setVolume(0.6) -- 90% of ordinary volume
sound:setPitch(0.1) -- one octave lower
Posted by: Guest on May-20-2021
-2

love2d tutorial

-- print
love.graphics.print("hello world", x, y, angle, w, h)
Posted by: Guest on October-27-2020

Browse Popular Code Answers by Language