Search found 13 matches
- Thu May 12, 2011 12:29 am
- Forum: Support and Development
- Topic: Rectangles
- Replies: 5
- Views: 1626
Re: Rectangles
function love.load() World = love.physics.newWorld(-8000, -8000, 8000, 8000) World:setGravity(3, 300) World:setMeter(64) Bodies = {} Shapes = {} Bodies[0] = love.physics.newBody(World, 900/2.2, 625, 0, 0) Shapes[0] = love.physics.newRectangleShape(Bodies[0], 0, 0, 750, 50, 0) Bodies[1] = love.physi...
- Thu May 12, 2011 12:16 am
- Forum: Support and Development
- Topic: Rectangles
- Replies: 5
- Views: 1626
Rectangles
I have one rectangle as the floor in my place. When I make another, your guy can go straight through it.. Why?
- Tue May 10, 2011 1:40 am
- Forum: Support and Development
- Topic: Size
- Replies: 3
- Views: 2033
Re: Size
How would you make it so when you reach the end of one corner of a box, it continues and loads a new section?
- Tue May 10, 2011 1:28 am
- Forum: Support and Development
- Topic: Size
- Replies: 3
- Views: 2033
Re: Size
Nevermind, I figured it out.
- Tue May 10, 2011 1:10 am
- Forum: Support and Development
- Topic: Size
- Replies: 3
- Views: 2033
Size
Is there a way to make your game full screen?
- Mon May 09, 2011 4:07 am
- Forum: Support and Development
- Topic: Physics
- Replies: 3
- Views: 1581
Physics
Can someone explain to me that co-ordinates of these?
world = love.physics.newWorld(-650, -650, 650, 650)
What do "(-650, -650, 650, 650)" these represent?
world = love.physics.newWorld(-650, -650, 650, 650)
What do "(-650, -650, 650, 650)" these represent?
- Mon May 09, 2011 2:38 am
- Forum: Support and Development
- Topic: Using LOVE 2D
- Replies: 10
- Views: 3768
Re: Using LOVE 2D
Ok thanks!
- Mon May 09, 2011 2:16 am
- Forum: Support and Development
- Topic: Using LOVE 2D
- Replies: 10
- Views: 3768
Re: Using LOVE 2D
They're just 2D. Let me explain.. Image - Level -- It's covers the whole screen and loads fine on its own. Image - Character -- When you load it, it covers everything for some reason. The size of the picture is the same as the level, but everything is transparent except the actual character. However...
- Mon May 09, 2011 2:04 am
- Forum: Support and Development
- Topic: Using LOVE 2D
- Replies: 10
- Views: 3768
Re: Using LOVE 2D
Hey, I have a little thing of code. It gets two images and loads them onto the game. The first is the level, and that loads fine, then I load a picture of the character but the level image disappears. Why?
- Mon May 09, 2011 1:31 am
- Forum: Support and Development
- Topic: Images
- Replies: 3
- Views: 1656
Re: Images
Nevermind, I got it to not error but their is a new problem. It now just shows up as a blank screen.