Can anyone draw me this simple sprite?
Community Forums/Graphic Chat/Can anyone draw me this simple sprite?| 
 | ||
| I need a bullet trail sprite as seen in the below screenshot. Can anyone draw me a simple one please?   | 
| 
 | ||
| Hi, +1 Mortiis. I seek the same effect for a "space shoot". Short trail (like Tron ), with one texture? JP Maybe a solution with this lib? http://www.blitzbasic.com/Community/posts.php?topic=83716   | 
| 
 | ||
| here run this code.  it saves an image to c:\btrail.bmp Graphics 640,480,0,2 SetBuffer FrontBuffer() img = CreateImage(640,20) SetBuffer ImageBuffer(img) For x = 0 To 640 For y = 0 To 20 m# = Abs(y-10.0)*10 m2# = (-x+640)/640.0 Color (255.0-m)*m2#,(100-m)*m2#,0 Plot x,y Next Next SetBuffer FrontBuffer() DrawImage img,1,1 SaveBuffer ImageBuffer(img),"c:\btrail.bmp" WaitKey() End | 
| 
 | ||
| "...I need a bullet trail sprite..." Oups :-( @Nate. Coool :) JP Edit : Can anyone write me a simple routine to use this sprite as the first image? :) :) | 
| 
 | ||
| OFC I'll draw it for you mortiis! If you pay me. | 
| 
 | ||
| That shouldn't be that hard to do yourself, if you have a drawing program that is. | 
| 
 | ||
|   | 
| 
 | ||
| Good work Pongo, yours look even better than the W40K original stuff. | 
| 
 | ||
| Lovely work Pongo!, can you provide an alpha'ed png version too please? Or even better, a dxt5 dds texture, but I can convert the png too.  OFC I'll draw it for you mortiis! If you pay me. I see, how desperately you need money. | 
| 
 | ||
| Don't know much about .dds formats, so here's a .png   | 
| 
 | ||
| I see, how desperately you need money. Not really: http://blitzbasic.com/Community/posts.php?topic=79579 If you pay for something, most of the time you are entitled to demand the quality level for what you've paid for. | 
| 
 | ||
| can i use your bullet too? I need one for my shooty and was just about to draw one myself :) | 
| 
 | ||
| Free for anyone. Use as you wish. | 
| 
 | ||
| Nice pongo, thanks. | 
| 
 | ||
| [ CLAP CLAP CLAP ] |