Is there a way to modify the terrain while gameplay? I cant explain it good because my english vocabular is bad but heres and example.
The player walks in snow and he leaves spoors in it? I hope you understood my question
Re: In game terrain modify
Posted: Sat Jan 26, 2013 10:28 am
by Loopy53
Not likely. It may be possible with some serious scripting and efffect workarounding. You could have a trail effect of "spoors" (?, i think you mean footprints) attached behind him but as the foot moved up so would the effect...
Short answer: *MAY* be possible.
Most reasonable answer: No, sorry.
Re: In game terrain modify
Posted: Sat Jan 26, 2013 11:17 am
by Nedarb7
You could try making an effect something like the AT-AT dust that leaves a decal under your player's foot.
Re: In game terrain modify
Posted: Sat Jan 26, 2013 11:18 am
by Loopy53
Really? I did not know that!
Re: In game terrain modify
Posted: Sat Jan 26, 2013 11:58 am
by Noobasaurus
It would be done similar to how Mav made his bullets leave marks on the walls, only your feet are doing it.
Re: In game terrain modify
Posted: Sat Jan 26, 2013 12:44 pm
by LEO
is there a way to make fx geometry modifying something??
Re: In game terrain modify
Posted: Sat Jan 26, 2013 12:55 pm
by Nedarb7
If you go to: C:\BF2_ModTools\assets\worlds\HOT\effects
There is an effect called: hot1_decals.fx
Copy it and the textures it uses then edit it with notepad to look like this:
Walkerstomps are textures, not geometry, and will disappear over time.
Re: In game terrain modify
Posted: Sat Jan 26, 2013 5:39 pm
by Glitch25
Maybe this will help, here's Information about decals from Sereja:
Sereja wrote:This effect, named "decal", and I never saw it, on any mod or stock maps, or even never found tutorial about this. So, it is posible, my personal discovery . Probably, creators, made it for SWBF1, but keep it, only for SWBF2...
So, here the small tutorial about this:
Making Decal.
1. First, go to SWBF2 assets, and find decal file, named hot1_decals.fx, in next directory:
C:\BF2_ModTools\assets\worlds\HOT\effects
Rename it to your ModID, like 027_decals.fx, and put it, in your Worlds Effects folder.
2. In same directory, you may found lot's of tga footprint and explosion samples, so copy them to your effects, or create your own. Do not forget to edit alpha channel.
3. Open your world ModID.REQ file, and add the name of your decal file, exactly in next lines:
5. Now, you should edit odf, and the lines are different, for different tipe of units.
Soldiers:
probably, it is imposible to add different footprints, for different tipe of soldiers, so, humans, droids and wookie use the same boots .
Walkers:
You can add the name, and edit footprint size, by this lines:
Code: [Select]
StompDecal = "decal_atte_footprint"
StompDecalSize = "1.1"
Explosion:
You can add the name of decal, by this line:
Code: [Select]
Decal = "decal_explosion"
But the size, of explosion decal, connected, with explosion damage:
Code: [Select]
Damage = "40.0"
DamageRadius = "30.0"
That's it!