Search found 2 matches
- Thu Aug 11, 2022 3:31 pm
- Forum: General
- Topic: I'm make game like mario and my code not working why i cant jump ;(
- Replies: 4
- Views: 2318
- Sun Jul 31, 2022 9:32 am
- Forum: General
- Topic: I'm make game like mario and my code not working why i cant jump ;(
- Replies: 4
- Views: 2318
I'm make game like mario and my code not working why i cant jump ;(
function love.load() window = love.window.setMode(800, 600, {resizable=false}) -- auto settings wf = require "libraries/windfield" world = wf.newWorld(0, 500) world:addCollisionClass('solid') ground = world:newRectangleCollider(0, 550, 800, 50) ground:setCollisionClass('solid') leftWall = ...