Search found 14 matches
- Sun Dec 19, 2010 3:35 pm
- Forum: Support and Development
- Topic: What is LUBE?
- Replies: 11
- Views: 4457
Re: What is LUBE?
Ok, I'll figure out port forwarding later, for now I'm going to work with server-client stuffs. I noticed I cannot do server:send{table} --or client:send{table} So I had to butcher my code to the point where it does not work. Any solutions? EDIT: Nevermind, I'm just going to recreate my entire code =P
- Sat Dec 18, 2010 11:42 pm
- Forum: Support and Development
- Topic: What is LUBE?
- Replies: 11
- Views: 4457
Re: What is LUBE?
black magic. Now, see, here's my one problem. Me and a few of my (smarter) friends tried setting up a server for Minecraft on my computer. My router is locked, and although we tried dozens of passwords, we had no luck in unlocking. I'm planning to maybe just reset the entire thing (Can't you just u...
- Sat Dec 18, 2010 11:22 pm
- Forum: Support and Development
- Topic: What is LUBE?
- Replies: 11
- Views: 4457
Re: What is LUBE?
Ok, so now that everything's working pretty well, I have to ask if I need to port forward for other's clients to connect to my server.
- Sat Dec 18, 2010 10:07 pm
- Forum: Support and Development
- Topic: What is LUBE?
- Replies: 11
- Views: 4457
Re: What is LUBE?
TechnoCat compiled a list of useful resources, and posted that in the lube thread, in this post , to be exact. I just tried require "LUBE" output = {} function onConnect(ip, port) output[#output+1] = "Connection from "..ip end function onReceive(data, ip, port) output[#output+1]...
- Sat Dec 18, 2010 9:35 pm
- Forum: Support and Development
- Topic: What is LUBE?
- Replies: 11
- Views: 4457
Re: What is LUBE?
Could you explain how I use it in simple n00b terms? You say "could YOU explain" as if the love forums were a person. LUBE is a networking library, and using it isn't as easy as someone just saying "type this". It might be a little advanced for a "n00b", though I've ne...
- Sat Dec 18, 2010 8:38 pm
- Forum: Support and Development
- Topic: What is LUBE?
- Replies: 11
- Views: 4457
What is LUBE?
Could you explain how I use it in simple n00b terms?
- Fri Dec 17, 2010 2:25 am
- Forum: Support and Development
- Topic: Corners from body?
- Replies: 1
- Views: 1123
Corners from body?
Making a shape with :getBoundingBox() is ok, but if it rotates, the bounding box does not. Is there any way to get the corners of a shape?
- Mon Dec 06, 2010 1:40 am
- Forum: Support and Development
- Topic: love.physics causes C++ errors.
- Replies: 11
- Views: 4762
Re: love.physics causes C++ errors.
That was it, thanks.TechnoCat wrote:Are you updating your world?
http://love2d.org/wiki/World:update
Yeah. I must have missed that part.TechnoCat wrote:Also, have you looked at this yet? http://love2d.org/wiki/Tutorial:Physics
- Mon Dec 06, 2010 1:11 am
- Forum: Support and Development
- Topic: love.physics causes C++ errors.
- Replies: 11
- Views: 4762
Re: love.physics causes C++ errors.
I fixed that, still nothing.
- Mon Dec 06, 2010 12:42 am
- Forum: Support and Development
- Topic: love.physics causes C++ errors.
- Replies: 11
- Views: 4762
Re: love.physics causes C++ errors.
I figured this would be it: newbody = #bodies + 1 graphics[#graphics + 1] = {fx,fy,rx,ry} bodies[newbody] = love.physics.newBody(world,fx,fy,0,10) shapes[newbody] = love.physics.newRectangleShape(bodies[newbody],0,0,rx,ry,0) bodies[newbody]:setMassFromShapes() fx,fy,rx,ry = 0,0,0,0 But I also have t...