Search found 2 matches

by _Rocoo_
Fri Sep 23, 2022 4:49 pm
Forum: Support and Development
Topic: Clipping
Replies: 0
Views: 5894

Clipping

In resume, i need a script to prevent my character to noclip through the map Here's what i have function love.load() Slimo = love.graphics.newImage("slimo.png") Slime = love.graphics.newImage("slime.png") MAP = love.graphics.newImage("MAP.png") grad = 0 rot = grad * (3....
by _Rocoo_
Wed Aug 10, 2022 10:07 pm
Forum: Support and Development
Topic: Images
Replies: 4
Views: 2465

Images

How do i put images in my thing (not game yet), i make sure the name is right and... i'm not very sure about the code, here is it function love.load() x = 0 y = 0 mv = 10 slime = love.graphics.newImage("frame_up.png") end function love.draw() love.graphics.draw("slime", x, y) end...