Search found 98 matches

by Mud
Sun Nov 28, 2010 9:27 pm
Forum: General
Topic: The FAKE (weird) Love!
Replies: 22
Views: 8783

Re: The FAKE (weird) Love!

Game looks freakin' amazing. Gorgeous, procedurally generated, MMO (moderately; ~200 players per server), action/adventure/world-building/castle-defense game with rather deep systems. The tools demo is particular hilarious; the guy's obviously a genius, and having a blast putting together all this s...
by Mud
Sun Nov 28, 2010 7:18 am
Forum: Libraries and Tools
Topic: No Comment
Replies: 40
Views: 22947

Re: No Comment

Tabs are better. If you don't care what your code looks like on someone else's machine. I'm too much of a control freak for that. :monocle: And use white on black because it's easier on my eyes when coding. Same with the Terminal. Same here, though in recent years I've started lower contrast on my ...
by Mud
Sun Nov 28, 2010 2:19 am
Forum: Libraries and Tools
Topic: No Comment
Replies: 40
Views: 22947

Re: No Comment

zac352 wrote:Tabs are better than spaces. End of story. :P
Except for the part where spaces are better than tabs. :crazy:
by Mud
Sun Nov 28, 2010 2:18 am
Forum: Games and Creations
Topic: Flying Revenge: Kill the Humans
Replies: 14
Views: 9140

Re: Flying Revenge: Kill the Humans

Awesome.
by Mud
Sat Nov 27, 2010 11:45 pm
Forum: Libraries and Tools
Topic: No Comment
Replies: 40
Views: 22947

Re: No Comment

what's happening with you guys? The topic's name is "No Comment" but you already made about a dozen replies! There's a well known phenomena that goes back to newsgroups (somebody gave it a name, but I've forgotten it), where if you ask a very simple question like "tabs vs spaces?&quo...
by Mud
Sat Nov 27, 2010 7:31 am
Forum: Libraries and Tools
Topic: No Comment
Replies: 40
Views: 22947

Re: No Comment

Jasoco wrote:Do they even do anything in Löve? This isn't JavaScript. They just make it look ugly.
They're optional in both languages. 99% of the time they do pretty much nothing, but there are situations where need them.
by Mud
Fri Nov 26, 2010 5:32 am
Forum: General
Topic: Hit a speedbump as I was learning Love and Lua
Replies: 16
Views: 10159

Re: Hit a speedbump as I was learning Love and Lua

Trookat came into my topic and kind of hijacked it, posting his own questions, blocking mine from being noticed and receiving responses Trookat didn't hijack your topic, he answered your question. :huh: -- Can you explain why a newly created object has the value of another instance, and not the def...
by Mud
Fri Nov 26, 2010 2:45 am
Forum: Support and Development
Topic: Help! Unfinished capture in string!
Replies: 3
Views: 2603

Re: Help! Unfinished capture in string!

Code: Select all

string.find(text, "%(")
by Mud
Fri Nov 26, 2010 12:32 am
Forum: General
Topic: Hit a speedbump as I was learning Love and Lua
Replies: 16
Views: 10159

Re: Hit a speedbump as I was learning Love and Lua

So I need a giant library to use classes? Not really. The book you're reading right now has a chapter on classes . If your needs are simple (don't need multiple inheritance, up-casting, etc.), you can get away with just this for simple prototype based inheritance: local Class = {} function Class:ne...