Search found 11 matches
- Sat Nov 12, 2005 3:40 am
- Forum: PSP Lua Player Development
- Topic: ok...simple NOOB problem...
- Replies: 14
- Views: 5917
I wrote an algorithm for ball bouncing in other language. No time to dig up where I put it on my 160GB HD. But here is a hint: Say the moving ball has a new position (x2,y2) to move from the previous position (x1,y1). If x2 is outside of the vertical wall, mirror it and keep y2 unchanged. Likewise,...
- Sat Nov 12, 2005 3:20 am
- Forum: PSP Lua Player Development
- Topic: ok...simple NOOB problem...
- Replies: 14
- Views: 5917
- Sat Nov 05, 2005 12:46 am
- Forum: PSP Lua Player Development
- Topic: transparent photo
- Replies: 7
- Views: 3143
- Fri Oct 14, 2005 7:03 am
- Forum: PSP Lua Player Development
- Topic: [WIP] Clock in the Sky
- Replies: 16
- Views: 6469
Unless it's a BlackLight LED:KawaGeo wrote:BTW, i'd prefer red LED's instead of black. There is no such as black LED's.
http://members.misty.com/don/ledbl.html
- Wed Oct 12, 2005 4:15 am
- Forum: PSP Lua Player Development
- Topic: please help me debug my code
- Replies: 2
- Views: 1970
- Sat Oct 08, 2005 8:40 am
- Forum: PSP Lua Player Development
- Topic: [Lua Tutorial] So you wanna different font..
- Replies: 25
- Views: 12716
- Fri Oct 07, 2005 11:45 pm
- Forum: PSP Lua Player Development
- Topic: [TUT] What is a finite state machine?
- Replies: 1
- Views: 1853
- Fri Oct 07, 2005 9:12 am
- Forum: PSP Lua Player Development
- Topic: [Lua Functions] Image Rotate & Image Scale
- Replies: 2
- Views: 2110
- Fri Oct 07, 2005 5:25 am
- Forum: PSP Lua Player Development
- Topic: [Lua Functions] Image Rotate & Image Scale
- Replies: 2
- Views: 2110
[Lua Functions] Image Rotate & Image Scale
Here's some functions I came up with; I hope someone finds them useful. function rotateImage(theImage) newImage = Image.createEmpty(theImage:height(), theImage:width()) for x = 1, theImage:width()...
- Fri Oct 07, 2005 5:16 am
- Forum: PSP Lua Player Development
- Topic: [Lua Tutorial] So you wanna different font..
- Replies: 25
- Views: 12716
[Lua Tutorial] So you wanna different font..
Pixel Fonts: ~~~~~~~ First things first I want to say I learned/stole/modified alot of this stuff from LuMo ( http://lumo.at.tt ) Okay, We need to find a font to download: I found some good fonts here http://lumo2000.lu.funpic.de/?action=fonts (careful some of the pics are bigger then 512 so won't w...
- Thu Sep 29, 2005 10:12 am
- Forum: PSP Lua Player Development
- Topic: powerGetBatteryLifePercent ???
- Replies: 2
- Views: 2517
powerGetBatteryLifePercent ???
I tried a simple program.. System.usbDiskModeActivate() -- Battery Level View white = Color.new(255, 255, 255) screen:clear() batlev = System.powerGetBatteryLifePercent() screen:print(11, 2, string.format(...