Is there any tutorial on the internet about colons in lua or love2d and their functionality, what they do, and how they can be utilized?
Link me if you got one.
Thanks.
Search found 15 matches
- Tue Jan 22, 2013 1:43 am
- Forum: Support and Development
- Topic: Le pregunta o noobs (nooby question)
- Replies: 2
- Views: 1896
- Mon Jan 14, 2013 11:04 pm
- Forum: Support and Development
- Topic: A strange issue
- Replies: 2
- Views: 1707
Re: A strange issue
function love.conf(a) a.title = ------- end This is invalid Lua. It throws an error in love.conf and LÖVE will not create a window. Always check if you get an error message in stdout. If you don't have a terminal/command prompt, save it to a file with IO redirection: path/to/love path/to/mygame > s...
- Mon Jan 14, 2013 10:49 pm
- Forum: Support and Development
- Topic: A strange issue
- Replies: 2
- Views: 1707
A strange issue
Ok, for whatever reason, when I drag my game files over to LOVE.exe, it just does NOTHING, I mean out of the blue and when it was working earlier it just stopped working with no error window, just dragged onto love.exe, a half of second of loading then nothing. I have no idea why the code would do t...
- Fri Jan 04, 2013 2:56 am
- Forum: Support and Development
- Topic: C++ Map Maker
- Replies: 1
- Views: 1628
C++ Map Maker
Ok, I've decided to begin work on a C++ written map maker for a game that I'm developing and I'm wondering how exactly this is going to go on through and how I could make Love2D somehow understand some C++ imput to build the map and objects of the map.
That is all for now.
That is all for now.
- Sun Dec 30, 2012 6:50 am
- Forum: Support and Development
- Topic: What are 'nil' errors?
- Replies: 12
- Views: 8167
Re: What are 'nil' errors?
I've decided that I'm going to watch a youtube series to just create a much better foundation of knowledge, rather than figuring out issues one by one with barely any idea of what I'm doing.
- Sun Dec 30, 2012 6:37 am
- Forum: Support and Development
- Topic: What are 'nil' errors?
- Replies: 12
- Views: 8167
Re: What are 'nil' errors?
Oh and I've changed it from drawq to draw temporarily.
- Sun Dec 30, 2012 6:35 am
- Forum: Support and Development
- Topic: What are 'nil' errors?
- Replies: 12
- Views: 8167
Re: What are 'nil' errors?
Aside from the problem TheDeskPop mentioned, this part makes little sense: player.characters = love.graphics.newImage("characters.png") player.left1 = love.graphics.newQuad(10, 30, 91, 170, 550, 170) --(10, 30, 91, 170, 550, 170) love.graphics.newImage("characters.png") You firs...
- Sun Dec 30, 2012 6:13 am
- Forum: Support and Development
- Topic: What are 'nil' errors?
- Replies: 12
- Views: 8167
Re: What are 'nil' errors?
Bump!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- Sun Dec 30, 2012 5:05 am
- Forum: Support and Development
- Topic: What are 'nil' errors?
- Replies: 12
- Views: 8167
Re: What are 'nil' errors?
Gah, I have another issue I'm trying to get around, and I've tried every logical solution I know of, this is the issue: v1bN6.png function love.load() love.physics.setMeter(60) world = love.physics.newWorld(0, 9.81*64, true) --image = love.graphics.newImage("sheet1.png") --x = 50 --y = 50 ...
- Sat Dec 22, 2012 9:35 pm
- Forum: Support and Development
- Topic: What are 'nil' errors?
- Replies: 12
- Views: 8167
Re: What are 'nil' errors?
*facepalm*Nixola wrote:It seems that newRectangleShape doesn't exist in the table you're searching it, could you upload a .love?
EDIT: You posted your code... Look line 43:You typed a space instead of a dotCode: Select all
objects.player.shape = love.physics newRectangleShape(10, 30, 91, 170)
and thanks.. ugh lol.