project reality header
Go Back   Project Reality Forums > PR:BF2 Mod Forums > PR:BF2 Community Modding > Modding Tutorials
08 Sep 2024, 00:00:00 (PRT)
Register Developer Blogs Members List Search Quick Links
Modding Tutorials Information and tutorials related to modding BF2.

Reply
 
Thread Tools Display Modes
Old 2011-01-24, 10:11   #31
Outlawz7
Retired PR Developer

Outlawz7's Avatar
Default Re: [Static Object Tutorial] Creating a Simple Structure

Quote:
Because my editor crashes very often when I shoot at anything (any tips with that too would be appreciated)
Yes, firing weapons inside the editor makes it crash /endtip


Outlawz7 is offline Reply With Quote
Old 2011-01-24, 10:15   #32
Amok@ndy
Retired PR Developer
Supporting Member

Amok@ndy's Avatar
Default Re: [Static Object Tutorial] Creating a Simple Structure

Quote:
Originally Posted by splatters View Post
New problemo, after finishing the static I loaded it in the editor, put it in a map did lightmaps etc. Because my editor crashes very often when I shoot at anything (any tips with that too would be appreciated) I decided to test the materials along with the vehicle cols in-game. Loading the test map took longer than usually and when I spawned I couldn't see the shed anywhere.. Checked back in the editor, and it was still in the test level, all the .cons and .tweaks seem to be ok.

Btw, naming the static garden_shed01 will conflict with the original static that rhino did and put in-game, I suggest naming it something else, otherwise it won't show up in the editor.
have you repacked your objects ? if not copy the whole shed folder to your map folder /yourmap/objects/staticobjects/........
and repack your map


Amok@ndy is offline Reply With Quote
Old 2011-01-24, 11:20   #33
splatters
Default Re: [Static Object Tutorial] Creating a Simple Structure

Ah, cheers! Didn't think about repacking the objects at all.
splatters is offline Reply With Quote
Old 2011-01-24, 11:49   #34
Rhino
Retired PR Developer
Supporting Member

Rhino's Avatar
Default Re: [Static Object Tutorial] Creating a Simple Structure

Quote:
Originally Posted by [R-DEV]Outlawz View Post
Yes, firing weapons inside the editor makes it crash /endtip

In the Level editor "sometimes" it can crash, mainly depends on what you shoot and what you shoot it with, but in the objects editor I've yet to crash due to shooting an object.

Do all your material testing in the object editor is my best advice. If you are crashing when shooting the object editor, then I dunno about that

Rhino is offline Reply With Quote
Old 2011-06-22, 16:13   #35
Psyrus
Retired PR Developer
Default Re: [Static Object Tutorial] Creating a Simple Structure

Hey, perhaps a stupid question but when modeling a static, is is best to have as much on on one 'object'/'editable poly' as possible or like the door handles/hinges/etc in the tutorial, is the separation ok? Are there any inefficiencies added or is it completely acceptable either way?

I ask because in theory I could get away with less polygons if I didn't have make it as one big object (for example having the window shutters as a separate object & then aligning them with 0px difference rather than extruding out from the main building) since you have to do all that 3-4 verts for things you extrude out of surfaces. Another advantage is that I can mirror separate objects whereas from my limited understanding, I can't do that with subpolys on an object?

Oh and if I wanted to make a corrugated roof, can that be done with normal maps or are they for really subtle bumps and stuff, not like 5-8cm waves in a surface? Would it even be worth it on a roof that people most likely won't even really see up close? No way I would bother with polygons because it would basically add 25% to my poor model.
Psyrus is offline Reply With Quote
Old 2011-06-22, 17:07   #36
Outlawz7
Retired PR Developer

Outlawz7's Avatar
Default Re: [Static Object Tutorial] Creating a Simple Structure

Of course. (@both questions)

Outlawz7 is offline Reply With Quote
Old 2011-06-22, 18:36   #37
Psyrus
Retired PR Developer
Default Re: [Static Object Tutorial] Creating a Simple Structure

Quote:
Originally Posted by [R-DEV]Outlawz View Post
Of course. (@both questions)
Sorry but I don't really see how 'of course' answers the multi-part first question

I don't answer the question, "Would you like tea or coffee tonight?" with "of course", unless I'm planning to get a look like this:
Psyrus is offline Reply With Quote
Old 2011-06-23, 06:15   #38
Rhino
Retired PR Developer
Supporting Member

Rhino's Avatar
Default Re: [Static Object Tutorial] Creating a Simple Structure

Quote:
Originally Posted by Psyrus View Post
Hey, perhaps a stupid question but when modeling a static, is is best to have as much on on one 'object'/'editable poly' as possible or like the door handles/hinges/etc in the tutorial, is the separation ok? Are there any inefficiencies added or is it completely acceptable either way?

I ask because in theory I could get away with less polygons if I didn't have make it as one big object (for example having the window shutters as a separate object & then aligning them with 0px difference rather than extruding out from the main building) since you have to do all that 3-4 verts for things you extrude out of surfaces. Another advantage is that I can mirror separate objects whereas from my limited understanding, I can't do that with subpolys on an object?
It depends what exactly you mean by septate object.

If you mean a totally separate staticobject that's exported with a diffrent name and placed on the main building in the BF2 Editor then in most cases that is not a very good idea as that means extra draw calls etc which harms performance... There are only a few exceptions when this should be done but certainly not for something like window shutters

If you mean a separate elements, ie, its attached to the main object, but its not welded up to the main object, so when you use the element selection tool and you select the window shutters or w/e, it only selects them and not the main building, that's ok to an extent but in most cases you really should weld an object up to prevent zfighting and it also gives you a much cleaner model in most cases. Door hinges for example is something you really do need to weld up since they are so thin, if you didn't weld them up then you would get a load of zfighting between the door and the hinge.
I'm pretty sure it goes into this and in more detail in the tut...


Quote:
Originally Posted by Psyrus View Post
Oh and if I wanted to make a corrugated roof, can that be done with normal maps or are they for really subtle bumps and stuff, not like 5-8cm waves in a surface? Would it even be worth it on a roof that people most likely won't even really see up close? No way I would bother with polygons because it would basically add 25% to my poor model.
When faced with these type of questions my advice is to always look at other objects in BF2/PR and look at how they have been made, as well as also look at possible textures you can use and how they have been used on other objects and how you can use them.

With a corrugated roof, most vBF2 and even PR objects just use a flat surface with the texture and normal maps ye although on a few objects they have been made a little 3D, like on my HESCO Sanger which I mainly made them 3D for that because you could go right up close to them and under them and they would have looked pretty odd being 2D.

You really need to decide for yourself what's best for your object, but if its really out of the way and you want to keep tri count down, go for a flat, 2D surface with normal maps.

Rhino is offline Reply With Quote
Old 2011-06-23, 16:00   #39
Psyrus
Retired PR Developer
Default Re: [Static Object Tutorial] Creating a Simple Structure

Quote:
Originally Posted by [R-DEV]Rhino View Post
It depends what exactly you mean by septate object.

If you mean a totally separate staticobject that's exported with a diffrent name and placed on the main building in the BF2 Editor then in most cases that is not a very good idea as that means extra draw calls etc which harms performance... There are only a few exceptions when this should be done but certainly not for something like window shutters

If you mean a separate elements, ie, its attached to the main object, but its not welded up to the main object, so when you use the element selection tool and you select the window shutters or w/e, it only selects them and not the main building, that's ok to an extent but in most cases you really should weld an object up to prevent zfighting and it also gives you a much cleaner model in most cases. Door hinges for example is something you really do need to weld up since they are so thin, if you didn't weld them up then you would get a load of zfighting between the door and the hinge.
I'm pretty sure it goes into this and in more detail in the tut...
Thanks so much for the explanation, has helped me a great deal!
Psyrus is offline Reply With Quote
Old 2011-06-30, 09:09   #40
Stongtea
Default Re: [Static Object Tutorial] Creating a Simple Structure

This tutorial is fantastic. Just starting to move from modding to creating, really helpful.
Stongtea is offline Reply With Quote
Reply


Tags
crating, creating, modelling, object, simple, static, statics, structure, tutorial

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



All times are GMT. The time now is 01:17.