Can anyone draw me this simple sprite?

Community Forums/Graphic Chat/Can anyone draw me this simple sprite?

Mortiis(Posted 2009) [#1]
I need a bullet trail sprite as seen in the below screenshot. Can anyone draw me a simple one please?




ZJP(Posted 2009) [#2]
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



Nate the Great(Posted 2009) [#3]
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



ZJP(Posted 2009) [#4]
"...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? :) :)


Kryzon(Posted 2009) [#5]
OFC I'll draw it for you mortiis!


If you pay me.


Ross C(Posted 2009) [#6]
That shouldn't be that hard to do yourself, if you have a drawing program that is.


Pongo(Posted 2009) [#7]



lo-tekk(Posted 2009) [#8]
Good work Pongo, yours look even better than the W40K original stuff.


Mortiis(Posted 2009) [#9]
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.


Pongo(Posted 2009) [#10]
Don't know much about .dds formats, so here's a .png




Kryzon(Posted 2009) [#11]

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.


D4NM4N(Posted 2009) [#12]
can i use your bullet too? I need one for my shooty and was just about to draw one myself :)


Pongo(Posted 2009) [#13]
Free for anyone.

Use as you wish.


Ross C(Posted 2009) [#14]
Nice pongo, thanks.


Knight #51(Posted 2009) [#15]
[ CLAP CLAP CLAP ]