Page 1 of 1

Lua

Posted: Sat Apr 06, 2024 2:24 pm
by edu
sup guys, for some reason, my character image doesn't render on love 2d windown. My other project is working fine but, in this one, it doesn't. can someone help me?

posX = 250
posY = 250
tam = 1
ori= 120
angulo = 0

love.graphics.toggleFullscreen = true
function love.load()
PlaImg = love.graphics.newImage("Imgs/char.png")
love.mouse.setVisible = false
end

function love.draw()
rot = angulo
love.graphics.draw(PlaImg, posX, posY, rot, tam, ori, ori)
end

Re: Lua

Posted: Sun Apr 07, 2024 12:18 am
by keharriso
You need to pass the scale twice, one for X and one for Y:

Code: Select all

love.graphics.draw(PlaImg, posX, posY, rot, tam, tam, ori, ori)

Re: Lua

Posted: Thu Apr 11, 2024 2:39 pm
by togFox