Where or how can I get clouds?
Moderator: Moderators
- linksith
- Command Sergeant Major

- Posts: 284
- Joined: Mon Jul 12, 2010 12:19 pm
- Projects :: Waaay too many projects
- xbox live or psn: me has no xbox
- Location: looking for a wifi connection
Where or how can I get clouds?
The name basically says it all. I'm making a map [in testing (still)] with land+space battles and I need to add clouds to this. The skydomes are also gonna serve as boundaries for that world. Thanks for the help.
-
THEWULFMAN
- Space Ranger
- Posts: 5557
- Joined: Tue Aug 17, 2010 3:30 pm
- Projects :: Evolved 2
- Location: Columbus, Ohio
- Contact:
Re: Where or how can I get clouds?
I think the best way to do this would be in the same method that Bespin: Platforms use.
Is what your going to want to do is look at the assets from Battlefront 1.
Thats BF1, Not BF2
Its always a good idea to dl the assets from the first game.
However, if you dont have the assets and you dont want to download them because of file size. follow the hidden/spoiler instruction at the bottomto work aroud this.
And know for the clouds. Go to C:\unsupported_swbf_mod_tools\BFBuilder\Assets\Shipped Worlds\Bespin\world1
and open the .fx file there and go to the part of the code that looks like this
And copy it to your worlds .fx file.
You will want to change the settings to the hieghht, size, and density you want for a cloud effect.
now go to C:\unsupported_swbf_mod_tools\BFBuilder\Assets\Shipped Common Effects
and copy the texture "fluffy" to your worlds effects folder. hope this helped
Is what your going to want to do is look at the assets from Battlefront 1.
Thats BF1, Not BF2
Its always a good idea to dl the assets from the first game.
However, if you dont have the assets and you dont want to download them because of file size. follow the hidden/spoiler instruction at the bottomto work aroud this.
And know for the clouds. Go to C:\unsupported_swbf_mod_tools\BFBuilder\Assets\Shipped Worlds\Bespin\world1
and open the .fx file there and go to the part of the code that looks like this
Code: Select all
Effect("FogCloud")
{
Enable(0);
Texture("fluffy");
Range(90.0, 120.0);
Color(168, 172, 180, 128);
Velocity(5.0, 0.0);
Rotation(0.1);
Height(16.0);
ParticleSize(28.0);
ParticleDensity(60.0);
}You will want to change the settings to the hieghht, size, and density you want for a cloud effect.
now go to C:\unsupported_swbf_mod_tools\BFBuilder\Assets\Shipped Common Effects
and copy the texture "fluffy" to your worlds effects folder. hope this helped
Hidden/Spoiler:
- linksith
- Command Sergeant Major

- Posts: 284
- Joined: Mon Jul 12, 2010 12:19 pm
- Projects :: Waaay too many projects
- xbox live or psn: me has no xbox
- Location: looking for a wifi connection
Re: Where or how can I get clouds?
1. Is this for adding clouds everywhere on the height level specified?
2. I found a similar code already placed in the fx file (I think it is put in there by default) and "fluffy" was in the common effects folder of every mod folder.
3. It is taking for-ever to munge so I'm not sure if it froze or is munging a big cloud throughout the map (the size is 1024x1024).
4. I was forced to put the computer into hibernate while it was munging; would it cease to function when I resume the computer from hibernation?
2. I found a similar code already placed in the fx file (I think it is put in there by default) and "fluffy" was in the common effects folder of every mod folder.
3. It is taking for-ever to munge so I'm not sure if it froze or is munging a big cloud throughout the map (the size is 1024x1024).
4. I was forced to put the computer into hibernate while it was munging; would it cease to function when I resume the computer from hibernation?
-
THEWULFMAN
- Space Ranger
- Posts: 5557
- Joined: Tue Aug 17, 2010 3:30 pm
- Projects :: Evolved 2
- Location: Columbus, Ohio
- Contact:
Re: Where or how can I get clouds?
linksith wrote:1. Is this for adding clouds everywhere on the height level specified?
2. I found a similar code already placed in the fx file (I think it is put in there by default) and "fluffy" was in the common effects folder of every mod folder.
3. It is taking for-ever to munge so I'm not sure if it froze or is munging a big cloud throughout the map (the size is 1024x1024).
4. I was forced to put the computer into hibernate while it was munging; would it cease to function when I resume the computer from hibernation?
1. Yes
2. Good, i didnt know that
3. Its not mungeing a giant cloud, its a rendered effect.
4. It should resume, but be patient, the most likely cause of a slow munge is a complex model or models.
- Jendo7
- Sith

- Posts: 1304
- Joined: Wed Apr 01, 2009 6:37 pm
- Location: Cambridge, England.
- Contact:
Re: Where or how can I get clouds?
You could also take clouds from Kashhyyk's SKY file. Just add one, or both of these references in your SKY file under DomeInfo()
... and put the respective .msh, and .tga's in your world folder.
I think there is also clouds in a few other maps like Felucia.
Hidden/Spoiler:
I think there is also clouds in a few other maps like Felucia.
- sim-al2
- 2nd Lieutenant

- Posts: 412
- Joined: Mon Jul 06, 2009 10:26 pm
- Projects :: Mapping on occasion
- Location: In the cockpit of some vehicle...
Re: Where or how can I get clouds?
Your map is 1024x1024? You'll likely have problems with effects disappearing and the map will likely have low framerates.
- linksith
- Command Sergeant Major

- Posts: 284
- Joined: Mon Jul 12, 2010 12:19 pm
- Projects :: Waaay too many projects
- xbox live or psn: me has no xbox
- Location: looking for a wifi connection
Re: Where or how can I get clouds?
Notice I said in my first post the map was in testing.sim-al2 wrote:Your map is 1024x1024? You'll likely have problems with effects disappearing and the map will likely have low framerates.
I'm still trying to figure out wolfman's way of doing it, but if that doesn't work ill try it.Jendo7 wrote:You could also take clouds from Kashhyyk's SKY file. Just add one, or both of these references in your SKY file under DomeInfo()
Hidden/Spoiler:
... and put the respective .msh, and .tga's in your world folder.
I think there is also clouds in a few other maps like Felucia.
- Teancum
- Jedi Admin

- Posts: 11080
- Joined: Wed Sep 07, 2005 11:42 pm
- Projects :: No Mod project currently.
- xbox live or psn: No gamertag set
- Location: Indiana
Re: Where or how can I get clouds?
Still, 1024x1024 will likely more than max out SWBF2's memory limitations. Though 99% of the limitations are much higher on the PC, they still exist.
-
THEWULFMAN
- Space Ranger
- Posts: 5557
- Joined: Tue Aug 17, 2010 3:30 pm
- Projects :: Evolved 2
- Location: Columbus, Ohio
- Contact:
Re: Where or how can I get clouds?
Jendo7 wrote:You could also take clouds from Kashhyyk's SKY file. Just add one, or both of these references in your SKY file under DomeInfo()
... and put the respective .msh, and .tga's in your world folder.Hidden/Spoiler:
I think there is also clouds in a few other maps like Felucia.
that wont work, he wants clouds he can fly thru, not skydome clouds, which is what these are.
- Jendo7
- Sith

- Posts: 1304
- Joined: Wed Apr 01, 2009 6:37 pm
- Location: Cambridge, England.
- Contact:
Re: Where or how can I get clouds?
I see! Didn't realise that, sorry.
- linksith
- Command Sergeant Major

- Posts: 284
- Joined: Mon Jul 12, 2010 12:19 pm
- Projects :: Waaay too many projects
- xbox live or psn: me has no xbox
- Location: looking for a wifi connection
Re: Where or how can I get clouds?
Ok. Thanks for letting me know before I tried it.THEWULFMAN wrote:Jendo7 wrote:You could also take clouds from Kashhyyk's SKY file. Just add one, or both of these references in your SKY file under DomeInfo()
... and put the respective .msh, and .tga's in your world folder.Hidden/Spoiler:
I think there is also clouds in a few other maps like Felucia.
that wont work, he wants clouds he can fly thru, not skydome clouds, which is what these are.
My computer seems to be doing a slower munge whether I have the clouds in the fx or not. It seems to freeze the munging process whenever it can or something. I think I'm going to need to munge on a different computer so this may take some time. Here is is where it stopped at. The processor meter is wobbling between 30 and 40 so it must be doing something but it isn't doing anything. It hasn't done this before, but the power supply blew-up (don't panic it got replaced) and I'm not sure how much of the hardware it took with it; I assumed it took nothing.
Hidden/Spoiler:
