Search found 796 matches

by thelinx
Thu Feb 16, 2012 5:27 pm
Forum: Support and Development
Topic: Basic concepts of OOP
Replies: 10
Views: 6060

Re: Basic concepts of OOP

You just define enemy.add as

Code: Select all

function enemy.add(self, args)
  print(args.race, args.weapons)
end
This works because

Code: Select all

func{foo = "bar"}
-- is syntactic sugar for
func({foo = "bar"})
by thelinx
Wed Feb 15, 2012 7:43 pm
Forum: Support and Development
Topic: Preventing tunneling in HardonCollider
Replies: 15
Views: 6514

Re: Preventing tunneling in HardonCollider

Silly bartbes, we're discussing HardonCollider here, not love.physics.
by thelinx
Wed Feb 15, 2012 1:28 pm
Forum: General
Topic: About the forum "Project and demos"
Replies: 15
Views: 3845

Re: About the forum "Project and demos"

Being the forum administrator, I oppose this suggestion.
Splitting up the forum more than necessary is a sin.
by thelinx
Wed Feb 15, 2012 1:22 pm
Forum: Libraries and Tools
Topic: Advanced Tiled Loader - No longer maintained
Replies: 260
Views: 180352

Re: Advanced Tiled Loader

legendman3 wrote:Hey when i load a map from tiled it doesn't render correctly and just shows a white screen. The map has 3 layers and is 128x128. What could be wrong?
Your tilemap image may be npot.
by thelinx
Wed Feb 15, 2012 1:20 pm
Forum: Support and Development
Topic: How to See if a key is down
Replies: 10
Views: 3899

Re: How to See if a key is down

That is a bad solution for text input boxes.
You should use the second argument to keypressed, unicode.
by thelinx
Tue Feb 14, 2012 10:33 am
Forum: General
Topic: LÖVE automated building and distribution for all platforms.
Replies: 14
Views: 7983

Re: LÖVE automated building and distribution for all platfor

miko wrote: I see. So maybe you should remove the link from your footer until it become public?
Or maybe you could not click it?
by thelinx
Tue Feb 14, 2012 2:04 am
Forum: Support and Development
Topic: Font Blur
Replies: 6
Views: 2831

Re: Font Blur

I would assume because you're drawing at decimal positions somewhere. Note that l.g.translate also makes this happen. Round all your exes and ys.
by thelinx
Tue Feb 07, 2012 12:03 pm
Forum: Support and Development
Topic: Rs232 Serial Communication
Replies: 6
Views: 4488

Re: Rs232 Serial Communication

I'm not sure if LÖVE 0.7.2 supports loading binary modules.

LÖVE 0.8.0 can load binary modules that are placed in the global LÖVE save directory (iirc).
Download a recent beta build from https://love2d.org/builds/, then put the library dll in %appdata%/love and try requiring it.
by thelinx
Wed Feb 01, 2012 4:45 pm
Forum: Support and Development
Topic: Can someone send source code of LÖVE 0.7.2 Released to me?
Replies: 10
Views: 5320

Re: Can someone send source code of LÖVE 0.7.2 Released to m

coffee wrote:
In January 2010, the US government forced open source project hosts to comply with US law and deny access from 5 countries (Cuba, Iran, North Korea, Sudan, and Syria).
The US constantly surprises me with their extreme stupidity.