Search found 1006 matches
- Sat Feb 25, 2017 5:24 pm
- Forum: General
- Topic: What code editor do you use ?
- Replies: 176
- Views: 122526
Re: What code editor do you use ?
2. An actual code completion, not only for basic Lua functions and LOVE API but also for all my own functions and classes/tables I create. I want it to read LuaDoc and trace types for at least some of the variables that I use. So I can use code completion when working with some library, for example...
- Sat Feb 25, 2017 8:44 am
- Forum: Support and Development
- Topic: Peer-to-Peer Networking Question
- Replies: 10
- Views: 3753
Re: Peer-to-Peer Networking Question
If someone gets this right that person should MUST make a library out of it!!
- Fri Feb 24, 2017 10:58 pm
- Forum: Support and Development
- Topic: [Android] 'Home' button causes LOVE to cry
- Replies: 4
- Views: 2153
Re: [Android] 'Home' button causes LOVE to cry
I'm pretty new to Android+Love, but I'm having a problem that might be related to yours. When I launch my game and do some stuff, then press the home button, then tap the game's icon from my home screen, the game reloads from scratch and I lose whatever unsaved progress I made in the game. I.e. lov...
- Fri Feb 24, 2017 10:50 pm
- Forum: Support and Development
- Topic: Optimize image loading / displaying
- Replies: 7
- Views: 2619
Re: Optimize image loading / displaying
If you are using a texture atlas then you should be using an SpriteBatch!
- Fri Feb 24, 2017 5:23 pm
- Forum: Support and Development
- Topic: BoundingBox.lua:7: ')' expected near '.'
- Replies: 2
- Views: 1837
Re: BoundingBox.lua:7: ')' expected near '.'
You have player.x player.y player.w... those are not valid arguments You either do: function CheckCollision(x, y, w, h, bx, by, bw, bh) local player = {x = x, y = y, w = w, h = h} local box = {x = bx, y = by, w = bw, h = bh} -- Your code end or: function CheckCollision(player, box) -- Your code end
- Fri Feb 24, 2017 1:06 am
- Forum: Support and Development
- Topic: How to make things 'move' across screen?
- Replies: 4
- Views: 3632
Re: How to make things 'move' across screen?
You check if it's on the screen, using the x, y coordinates and it'w width and height. If the x is bigger than the screen width or the y is bigger than the screen height then it's outside, same if the x coordinate is less than minus the object width or the y coordinate is less than minus the object ...
- Thu Feb 23, 2017 5:23 pm
- Forum: General
- Topic: [HELP] Proper scaling methods..
- Replies: 2
- Views: 1880
Re: [HELP] Proper scaling methods..
I suggest you take a look at push . Also if you want to make your own camera, draw your game to the size you want in a canvas, then Canvas:setFilter to nearest and draw that to the screen scaled up. Then you should most likely scale your mouse coordinates down to the world coordinates (by dividing b...
- Thu Feb 23, 2017 5:19 pm
- Forum: Support and Development
- Topic: table & for loop
- Replies: 5
- Views: 2183
Re: table & for loop
Code: Select all
function createGraph()
local graph = {}
for i=1, 60 do
graph[i] = {id= i, x=40*i, y=65}
end
return graph -- Only return the graph once the for loop has finished
end
local graph = createGraph()
Make graph local otherwise you would be overriding a global variable
- Thu Feb 23, 2017 5:14 pm
- Forum: General
- Topic: How would I go about learning to make "UI heavy/based games?"
- Replies: 5
- Views: 2091
Re: How would I go about learning to make "UI heavy/based games?"
Yeah also you should start with the basics, you need to render UI elements, learn how to do that, draw images to screen and text and so on. You need a way to layout the UI, to make lists, frames and whatnot, figure that out, how are you gonna create your objects and so on Then you need to be able to...
- Thu Feb 23, 2017 5:07 pm
- Forum: General
- Topic: Understanding love.run — Is there a annotated version?
- Replies: 7
- Views: 4817
Re: Understanding love.run — Is there a annotated version?
Interesting love.run zorg! I would really like to implement a threaded-static-frame-rate one I had the idea once and should be easy to work with but is a pain to implement and getting it right hahaha About the nil you put in the arg table [0] index, I sometimes get love.exe there, others I get nil (...