Search found 44 matches

by sharpobject
Sat Apr 02, 2011 6:42 am
Forum: General
Topic: Article about Lighting in "A Valley Without Wind"
Replies: 30
Views: 4590

Re: Article about Lighting in "A Valley Without Wind"

But if you have some recommendations I haven't tried yet, do tell. :P http://www.sublimetext.com/blog/articles/sublime-text-2-public-alpha https://github.com/b4winckler/macvim It has regexes and tags and scripting and stuff! http://ompldr.org/vODJ2Zg/Screen%20shot%202011-04-01%20at%2011.41.46%20PM....
by sharpobject
Thu Mar 31, 2011 4:55 pm
Forum: Support and Development
Topic: Why doesn't # decrease after remove?
Replies: 10
Views: 5097

Re: Why doesn't # decrease after remove?

table.remove() takes a table and an index and removes the thing at that index.
by sharpobject
Wed Mar 30, 2011 9:51 am
Forum: General
Topic: how do perfect Circle Collision Detection?
Replies: 4
Views: 4538

Re: how do perfect Circle Collision Detection?

What kind of shapes are you interested in colliding? If this is strictly about circle-circle collisions it should be pretty straightforward. there are also continous collision tests that calculate the exact time of impact. Right. The complexity of this test depends on what kind of interpolation you ...
by sharpobject
Sun Mar 27, 2011 8:47 am
Forum: Support and Development
Topic: HELP
Replies: 5
Views: 2252

Re: HELP

I'm using it like this: As soon as I know I want to use a socket I'll want to call network_init with the IP and port of the server. function network_init(ip,port) TCP_sock = socket.tcp() TCP_sock:settimeout(7) --Wait up to 7 seconds to connect. if not TCP_sock:connect(ip,port) then error("Faile...
by sharpobject
Sat Mar 26, 2011 6:27 am
Forum: Support and Development
Topic: Black image.
Replies: 4
Views: 3390

Re: Black image.

Hi, try it like this: function love.load() image = love.graphics.newImage("image1.png") sound1 = love.audio.newSource("sound1.mp3") local f = love.graphics.newFont(14) love.graphics.setFont(f) love.graphics.setBackgroundColor(255,255,255) end function love.draw() love.graphics.se...
by sharpobject
Wed Mar 23, 2011 2:46 am
Forum: General
Topic: Anyone gonna help a newbie?
Replies: 8
Views: 1794

Re: Anyone gonna help a newbie?

As Taehl said, you can include external files like this -- in main.lua outside of any function require("class") require("queue") require("globals") or like this -- in main.lua function love.load() -- love.filesystem.load() returns a function that does the stuff in the f...
by sharpobject
Tue Mar 22, 2011 5:02 am
Forum: General
Topic: Android LÖVE port
Replies: 17
Views: 7587

Re: Android LÖVE port

My question is, would a Lua implementation through Java be fast enough to make anything worthwhile in LOVE? How much speed would LOVE lose by implementing a C based interpreted language through yet another interpreted language? I don't understand a lot about low-level programming, so I could be way...
by sharpobject
Mon Mar 21, 2011 11:37 am
Forum: Games and Creations
Topic: Clone of the best puzzle game, Tetris Attack
Replies: 14
Views: 11879

Re: Clone of the best puzzle game, Tetris Attack

Tesselode wrote:Have you tried using dt?
Speed should be fixed now.
by sharpobject
Sun Mar 20, 2011 11:59 am
Forum: General
Topic: 4KB explosions Poll - winner: Taehl
Replies: 27
Views: 5619

Re: 4KB explosions Poll - winner: Taehl

Thanks! Though if it's supported, I would expect LÖVE to be able to open it.
by sharpobject
Sun Mar 20, 2011 11:43 am
Forum: General
Topic: 4KB explosions Poll - winner: Taehl
Replies: 27
Views: 5619

Re: 4KB explosions Poll - winner: Taehl

How do I run Taehl's entry? LÖVE 0.7.0 on OSX 10.6.6 doesn't load a game from it. Using the normal zip utility produces a .zip.cpgz file, which in turn produces a .zip file. The command line zip command also chokes on it. dripping:explosions robert$ unzip explosions.love Archive: explosions.love End...