Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Models for 3d game programming? [closed]

Tags:

game-engine

I'm a beginner in game development and game programming. I have experience in computer graphics - mainly OpenGL In those days Finally, I have some spare time to polish my game coding skills. But when coming to program a simple 3d game, I couldn't find any good resource for free textures and models for 3d graphics (for 2d game for example, I found many resources for sprite sheets and so on).

Is there any good resource you're familiar with for 3d game textures/models?

like image 843
Protostome Avatar asked Jun 28 '10 07:06

Protostome


2 Answers

This is not a programming queston.

As far as I know, good, free and high-quality modeling resources does not exist (from "good", "free" and "high-quality", select two). There are multiple free model repositories, but quality of content is generally poor, and there are few places where you can buy models.

There are free textures in multiple places (like this one), and they are easier to find than good free models.

Also, most of free content frequently includes some kind of catch - "non-commercial use only", "creative commons share alike"(i.e. if you make derivative, it should use same license), or it is under GPL.

Anyway, if you're okay with "Creative Commons share alike" and GPL, then you can probably use content from some of opensource games (OpenArena ), and get quite a lot of textures from wikipedia or wikimedia commons, flickr, and you can google for "free textures". You should be careful about using content from opensource games - some opensource projects (like war$ow and sauerbraten) use closed-source/restricted licenses for game content (i.e. you're free to reuse modify engine, but you cannot modify game content and you cannot use it with modified engine. Reasons are pretty obvious).

Anyway, it depends on what kind of model you want. It is pretty easy to find "easy" stuff like boxes, barrels, etc, because everyone can do that. When it comes to guns and vehicles, there will be a trouble - quality will drop, and number of good models will decrease. And if you want a fully rigged animated character with multiple animation, normally you can forget about it - such content is almost impossible to find. But you can probably use mods for Q3 and Q2 if you want characters (you can forget about physics in this case, though)

I'd recommend to forget about "free stuff", and try to make content yourself or hire someone to do that.

If you decide to make content yourself, then you'll need digital photo camera and (optionally) graphic tablet. You can make mediocre textures from photos (digital camera is cheap) using gimp, gimp-resynthesizer plugin, gimp-texturisze plugin, high-pass filters, etc. You can also make normal maps using blender or gimp, and there are even tutorials about extracting them from photos (you still will need to process them by hand). Modeling and animation can be done in blender (after 1 or two weeks of training) using reference photos. Low poly modeling is pretty quick (20 minutes to make a low-poly low-quality gun, hour or two to make simple character), but texture and animation will take more (setting up animation for character can take a few hours for amateur, making one animation for character will take at least several hours as well, making texture unwrap - hour, painting texture - up to few days, depending on quality you want, available reference material, availability of graphic tablet, etc). It is possible to cut corners a bit - for example, for making animations, you can film motion using photo camera(or video camera), and then use it for rotoscoping. Also, you'll need to find some kind of model format blender can export to, or you'll have to write an export plugin in python.

like image 120
SigTerm Avatar answered Nov 23 '22 17:11

SigTerm


The Blender foundation has a large model repository which may be of use.

like image 20
Oded Avatar answered Nov 23 '22 19:11

Oded