Search found 8 matches

by CodeDemon
Tue Feb 07, 2012 12:28 pm
Forum: Support and Development
Topic: Rs232 Serial Communication
Replies: 6
Views: 4468

Re: Rs232 Serial Communication

I added the dll file to %appdata%\love but it says it cant find it.
by CodeDemon
Tue Feb 07, 2012 11:41 am
Forum: Support and Development
Topic: Rs232 Serial Communication
Replies: 6
Views: 4468

Re: Rs232 Serial Communication

The device connects through usb, but to the computer it looks and acts like a serial port.
by CodeDemon
Tue Feb 07, 2012 11:24 am
Forum: Support and Development
Topic: Rs232 Serial Communication
Replies: 6
Views: 4468

Rs232 Serial Communication

I have recently come up with a very crazy idea. I would like Love to be able to read and write to an rs232 serial port. I have found a library for LuaForWindows that allows serial communication, but I have been unable to get Love to load it. Is there any possible way of doing what I want or is it be...
by CodeDemon
Tue Jan 03, 2012 11:12 pm
Forum: Games and Creations
Topic: Space Opera Gravity
Replies: 50
Views: 38707

Re: Space Opera Gravity

Wow, this is exactly what I wanted to play and tried to make. Beats the crap out of my version...
by CodeDemon
Mon Dec 12, 2011 3:52 pm
Forum: Support and Development
Topic: Moving object based on its rotation.
Replies: 4
Views: 5607

Re: Moving object based on its rotation.

Code: Select all

X=math.cos(Angle) * Speed
Y=math.sin(Angle) * Speed
X is the movement in the Horizontal direction, Y is the movement in the vertical direction, Angle is the angle of the obejct in radians and Speed is the amount of distance you wish the object to move.
by CodeDemon
Tue Nov 22, 2011 5:42 pm
Forum: Support and Development
Topic: Physics body rotation though applytorque
Replies: 2
Views: 2713

Re: Physics body rotation though applytorque

Thank you, that solved the problem, just need to work out the formulas for controlling it now.
by CodeDemon
Tue Nov 22, 2011 5:16 pm
Forum: Support and Development
Topic: Drawing Images
Replies: 7
Views: 3195

Re: Drawing Images

There is a handy topic here http://love2d.org/forums/viewtopic.php?f=4&t=451 which shows how to make a love file.
by CodeDemon
Tue Nov 22, 2011 5:12 pm
Forum: Support and Development
Topic: Physics body rotation though applytorque
Replies: 2
Views: 2713

Physics body rotation though applytorque

I am trying to make a game involving spaceships. I have decided to use love physics as it seems better than HC for simulating movement through space. The problem I have is that, although I can move the spaceship by applying force to it, I cannot get the spaceship to rotate though applyTorque. Please...