Anyone fancy creating a bomb mesh?

Community Forums/Graphic Chat/Anyone fancy creating a bomb mesh?

Boiled Sweets(Posted 2005) [#1]
Any one clever enought to create a cartoon type bomb for me?

It doesn't have to have the fuse as I'll use Particle Candy to render a flame....

Something likek this...

http://www.turbosquid.com/FullPreview/Index.cfm/ID/228137

And black and shiney...

Many thanks


Mustang(Posted 2005) [#2]
How many polygons?


Boiled Sweets(Posted 2005) [#3]
I can't say I'm too bothered - enough so it looks ok...

Sorry meshes aren't my strong point.

And I would really appreciate it if you tell me what you use to create them?


Jams(Posted 2005) [#4]
Check your emails ;)


Ross C(Posted 2005) [#5]
$25 for that! Jesus...


big10p(Posted 2005) [#6]
Yep. It costs a bomb. :P


Boiled Sweets(Posted 2005) [#7]
Jams

thanks but it has no texture - erm it looks flat - is there anything I can do about it?


Techlord(Posted 2005) [#8]
AppTitle("cartoon type bomb")

Graphics3D(800,600,16,2)
SetBuffer(BackBuffer()) 
Global bomb

camera=CreateCamera()
PositionEntity(camera,0,0,-6)
light=CreateLight()
TurnEntity(light,90,40,0)

bombStart()

While Not KeyHit(1)
	TurnEntity(bomb,1,2,3)
	UpdateWorld()
	RenderWorld()
	Flip()
Wend
End

Function bombstart()
	bomb=CreateSphere(32)
	bombcore=CreateCylinder(16)
	ScaleMesh(bombcore,.35,.10,.35)
	PositionMesh(bombcore,0,1,0)
	AddMesh(bombcore,bomb)
	EntityColor(bomb,0,0,128)
	EntityShininess(bomb,1) 
	FreeEntity(bombcore)	
	Return bomb
End Function



Jams(Posted 2005) [#9]
"thanks but it has no texture - erm it looks flat - is there anything I can do about it?"

That's cos it's black, even with a light it's still gonna look flat i'm afraid.. Sure you don't want a blue one like in the picture?


Banshee(Posted 2005) [#10]
Specular lighting (entityShininess) as in Frank's example should give it shading even though it's black and be just the ticket for that sort of object.


Jams(Posted 2005) [#11]
That's what i thought but it didn't really work, even with a specular highlight you still don't get a sense of depth, just a white blob inside a black blob.


Boiled Sweets(Posted 2005) [#12]
Thanks for all your help.

I have opted for Wings3d and Giles - this is my first effort, it's a rusty old bomb...




Ferminho(Posted 2005) [#13]
mmm looking good :)


Ash_UK(Posted 2005) [#14]
I strongly agree with ferminho
I love the particle effects on the bombs :D
Well done!!