Page 1 of 1

How do I turn up the nebula intensity in my game?

Posted: Sat Nov 08, 2008 7:38 am
by Lestradae
How do I turn up the nebula intensity in my 1.72 game?

Please someone tell me, want to have the psychedelic experience already seen in the nebula thread :)

:?:

L

Posted: Sat Nov 08, 2008 10:03 am
by another_commander
Open up planetinfo.plist. Go to the section titled universal. By default it looks like this:

Code: Select all

universal =
	{
		// The two multiplier values below determine how many more stars will be used to populate space
		// with respect to the number normally used. Apply to all systems by being included in the 
		// "universal" section.
		star_count_multiplier = 2;
		nebula_count_multiplier = 1;
		
		// Default docking clearance requirement for main stations.
		stations_require_docking_clearance = no;
	};
To change the density of stars and nebulae, play with the star_count_multiplier and nebula_count_multiplier variables until you find a nice balance between performance and visual beauty. The higher you make these numbers, the higher the load on your system, especially for the nebula multiplier.

Also, you need to be aware of this: The game engine will create a maximum of 4800 stars and 1280 blobs under normal conditions in order to ensure acceptable performance. However, when you use the multipliers, these limits no longer exist. You can add absurd number of stars and nebulae, but be prepared for huge performance hits in this case.

Finally, remember: Shift key becomes a good friend after editing a plist.

Posted: Sat Nov 08, 2008 10:17 am
by Ark
another_commander wrote:
However, when you use the multipliers, these limits no longer exist. You can add absurd number of stars and nebulae, but be prepared for huge performance hits in this case.
Especially in the case of increasing nebulas

...

Posted: Sat Nov 08, 2008 6:18 pm
by Lestradae
Thanks, A_C! :D