Space Bugs Collaboration

Space Bugs Collaboration

Share and discuss visual creations and creation practices like texturing, modelling and musing on the meaning of life.

Moderators: MR.D, Moderators

Post Reply
User avatar
bobthedinosaur
Blood & Steel Developer
Posts: 2700
Joined: 25 Aug 2004, 13:31

Space Bugs Collaboration

Post by bobthedinosaur »

To avoid flooding the WIP I am making a new thread on space bug progress, since several people have expressed interest with working on them.

So please share your work on this thread.

1st Download (more to come):
Here are the crab and snake bugs with UV's in obj and 3ds form.
Attachments
snake.jpg
snake.jpg (32.87 KiB) Viewed 6110 times
crab.jpg
crab.jpg (21.43 KiB) Viewed 6110 times
snakeNcrab.zip
(41.69 KiB) Downloaded 36 times
User avatar
KaiserJ
Community Representative
Posts: 3113
Joined: 08 Sep 2008, 22:59

Re: Space Bugs Collaboration

Post by KaiserJ »

i want to texture these; am i stepping on toes/
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Space Bugs Collaboration

Post by smoth »

they don't have toes to step on kaiser
User avatar
KaiserJ
Community Representative
Posts: 3113
Joined: 08 Sep 2008, 22:59

Re: Space Bugs Collaboration

Post by KaiserJ »

squishing any pseudopods then 8)
User avatar
bobthedinosaur
Blood & Steel Developer
Posts: 2700
Joined: 25 Aug 2004, 13:31

Re: Space Bugs Collaboration

Post by bobthedinosaur »

no, please do. just share your results.
User avatar
Wombat
Posts: 3379
Joined: 15 Dec 2008, 15:53

Re: Space Bugs Collaboration

Post by Wombat »

cant wait to come back home :D

also, i suggest u take a look at sy demon from dark colony ;)
User avatar
bobthedinosaur
Blood & Steel Developer
Posts: 2700
Joined: 25 Aug 2004, 13:31

Re: Space Bugs Collaboration

Post by bobthedinosaur »

Wombat wrote:take a look at sy demon from dark colony ;)
what do you meanby "sy demon"? I did a google search didn't find any thing but DC screen shots.
User avatar
Wombat
Posts: 3379
Joined: 15 Dec 2008, 15:53

Re: Space Bugs Collaboration

Post by Wombat »

its a unit from DC, but ye, could be hard to find pics >> ill send u one later
User avatar
PicassoCT
Journeywar Developer & Mapper
Posts: 10450
Joined: 24 Jan 2006, 21:12

Re: Space Bugs Collaboration

Post by PicassoCT »

Antlions from hl2 sneaking in?
User avatar
Wombat
Posts: 3379
Joined: 15 Dec 2008, 15:53

Re: Space Bugs Collaboration

Post by Wombat »

found something

Image

basicly something with this head with more teeth Image

with huge talons? spikes ? blades? and small body
User avatar
bobthedinosaur
Blood & Steel Developer
Posts: 2700
Joined: 25 Aug 2004, 13:31

Re: Space Bugs Collaboration

Post by bobthedinosaur »

Uploaded the UV'ed rhino and wasp
Image
and
Image

I'm not really a fan of the rhino yet. Maybe a good texture will help, or maybe I should redo it.
Attachments
rhinoNwasp.zip
(37.03 KiB) Downloaded 29 times
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Space Bugs Collaboration

Post by smoth »

the head is ok, the legs need work.
User avatar
bobthedinosaur
Blood & Steel Developer
Posts: 2700
Joined: 25 Aug 2004, 13:31

Re: Space Bugs Collaboration

Post by bobthedinosaur »

i think I might redo that one (the rhino).

anyways heres the soldier (previously known as drone) and a nest:
Image
Attachments
nestv2.jpg
nestv2.jpg (40.07 KiB) Viewed 5973 times
droneNnest.zip
(52.47 KiB) Downloaded 30 times
Last edited by bobthedinosaur on 16 Dec 2010, 06:39, edited 1 time in total.
User avatar
bobthedinosaur
Blood & Steel Developer
Posts: 2700
Joined: 25 Aug 2004, 13:31

Re: Space Bugs Collaboration

Post by bobthedinosaur »

okay. redid the rhino. and made a new drone that looks more like a worker. the old drone can be a soldier, maybe?

Image
Image
Attachments
newDroneNrhino.zip
(54.05 KiB) Downloaded 28 times
newdrone.jpg
(39.6 KiB) Downloaded 2 times
newrhino.jpg
(50.18 KiB) Downloaded 2 times
Last edited by bobthedinosaur on 16 Dec 2010, 07:16, edited 2 times in total.
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Space Bugs Collaboration

Post by smoth »

something looks really wack about your normals bob, is it the tool or all those edges on the flat one unwielded?
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Space Bugs Collaboration

Post by smoth »

here have a bouncy quadraped anim from my holloween project:

Code: Select all

walk()
{
	if(ISMOVING)
	{
	turn base		to x-axis <10>		speed	<100>;
	turn leg1  		to z-axis <-20> 	speed 	<235>;
	turn leg1  		to y-axis <-30>		speed 	<235>;
	turn leg4  		to z-axis <-20> 	speed 	<235>;
	turn leg4  		to y-axis <-30>		speed 	<235>;
	turn leg2  		to z-axis <0> 		speed 	<235>;
	turn leg2  		to y-axis <30>		speed 	<235>;
	turn leg3  		to z-axis <0> 		speed 	<235>;
	turn leg3  		to y-axis <30>		speed 	<235>;
	sleep 100;
	turn head		to x-axis <-10>		speed	<100>;
	sleep 100;
	}
	if(ISMOVING)
	{
	turn base		to x-axis <-10>		speed	<100>;	
	turn leg2  		to z-axis <-20> 	speed 	<235>;
	turn leg2  		to y-axis <-30>		speed 	<235>;
	turn leg3  		to z-axis <-20> 	speed 	<235>;
	turn leg3  		to y-axis <-30>		speed 	<235>;
	turn leg1  		to z-axis <0> 		speed 	<235>;
	turn leg1  		to y-axis <30>		speed 	<235>;
	turn leg4  		to z-axis <0> 		speed 	<235>;
	turn leg4  		to y-axis <30>		speed 	<235>;
	turn head		to x-axis <10>		speed	<100>;
	sleep 100;
	}
	turn head		to x-axis <0>		speed	<100>;
	sleep 100;
	turn base		to x-axis <0>		speed	<100>;
}
User avatar
bobthedinosaur
Blood & Steel Developer
Posts: 2700
Joined: 25 Aug 2004, 13:31

Re: Space Bugs Collaboration

Post by bobthedinosaur »

Nice. Is that for a spider like unit?
User avatar
knorke
Posts: 7971
Joined: 22 Feb 2006, 01:02

Re: Space Bugs Collaboration

Post by knorke »

I imported the snake and crab thing in upspring, but everything is one object?
User avatar
PicassoCT
Journeywar Developer & Mapper
Posts: 10450
Joined: 24 Jan 2006, 21:12

Re: Space Bugs Collaboration

Post by PicassoCT »

Its raining Headcrabs.. HelloLUA, tall, venomous, sneaky and mean.
Image

http://springrts.com/phpbb/download/fil ... ew&id=5415


Texture is 128x128, modell itself is unchanged, applied smothing groups (not invented, nor related to smoth). Oh, and Permission to speak granted.
Attachments
HolyCrab.sd7
(23.69 KiB) Downloaded 56 times
creepy.jpg
(37.84 KiB) Downloaded 2 times
User avatar
smoth
Posts: 22309
Joined: 13 Jan 2005, 00:46

Re: Space Bugs Collaboration

Post by smoth »

cool!
Post Reply

Return to “Art & Modelling”