Search found 8 matches
- Tue Feb 07, 2012 12:28 pm
- Forum: Support and Development
- Topic: Rs232 Serial Communication
- Replies: 6
- Views: 4862
Re: Rs232 Serial Communication
I added the dll file to %appdata%\love but it says it cant find it.
- Tue Feb 07, 2012 11:41 am
- Forum: Support and Development
- Topic: Rs232 Serial Communication
- Replies: 6
- Views: 4862
Re: Rs232 Serial Communication
The device connects through usb, but to the computer it looks and acts like a serial port.
- Tue Feb 07, 2012 11:24 am
- Forum: Support and Development
- Topic: Rs232 Serial Communication
- Replies: 6
- Views: 4862
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...
- Tue Jan 03, 2012 11:12 pm
- Forum: Games and Creations
- Topic: Space Opera Gravity
- Replies: 50
- Views: 41792
Re: Space Opera Gravity
Wow, this is exactly what I wanted to play and tried to make. Beats the crap out of my version...
- Mon Dec 12, 2011 3:52 pm
- Forum: Support and Development
- Topic: Moving object based on its rotation.
- Replies: 4
- Views: 6090
Re: Moving object based on its rotation.
Code: Select all
X=math.cos(Angle) * Speed
Y=math.sin(Angle) * Speed
- Tue Nov 22, 2011 5:42 pm
- Forum: Support and Development
- Topic: Physics body rotation though applytorque
- Replies: 2
- Views: 2914
Re: Physics body rotation though applytorque
Thank you, that solved the problem, just need to work out the formulas for controlling it now.
- Tue Nov 22, 2011 5:16 pm
- Forum: Support and Development
- Topic: Drawing Images
- Replies: 7
- Views: 3582
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.
- Tue Nov 22, 2011 5:12 pm
- Forum: Support and Development
- Topic: Physics body rotation though applytorque
- Replies: 2
- Views: 2914
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...