Steel Division 2

Steel Division 2

评价数不足
ModCenterQoLI
   
奖励
收藏
已收藏
取消收藏
标签: Interface
文件大小
发表于
更新日期
566.423 KB
3 月 18 日 上午 6:01
10 月 24 日 上午 4:59
2 项改动说明 ( 查看 )

订阅以下载
ModCenterQoLI

描述
It is compatible with any other mod that doesn't have changes to the UI.

Welcome to Mod Center Quality of Life Improvement mod!

This is a standalone mod that can work with other mods and provides only UI changes and nothing else.

As seen in the pictures above, it changes 2 things:
1. It expands the version text box in the main menu lower left corner so you can easily see what mods you have active if you have more then one active.

2. It moves the checkbox section to activate mods in the Mod Center to the left of the mod names so you can more easily see what mods you are actually activating.


FOR MODDERS:
If your mod is not compatible with this mod and you want to make it compatible it is important that your mod doesn't change or add any UI elements (e.g. main menu picture).
If it doesn't you can go to the
C:\Users\yourusername\Saved Games\EugenSystems\SteelDivision2\mod\yourmodname
and erase UI folder if it is there. (if it is not your mod should be compatible with this mod) Then generate your mod again and reupload it.

If your mod does make changes to the UI then solution above most likely won't work or in other words your png files won't show. Instead of this or if you just want to implement this into your mod you need to:

For 1:
go to
C:\Program Files (x86)\Steam\steamapps\common\Steel Division 2\Mods\yourmodname\GameData\UserInterface\Use\OutGame
and find UIOutGameVersionTextDescriptor.ndf file.
In it find the first MagnifiableWidthHeight = [[b]300.0[/b], 40.0] and change the first value (the 300.0) to 1000.0.
Save and generate and reupload :)

For 2:
For n.1:
go to
C:\Program Files (x86)\Steam\steamapps\common\Steel Division 2\Mods\yourmodname\GameData\UserInterface\Use\OutGame
and find UIOutGameVersionTextDescriptor.ndf file.
In it find the first MagnifiableWidthHeight = [300.0, 40.0] and change the first value (the 300.0) to 1000.0.
Save and generate and reupload :)

For n.2:
this is a little more complicated as it requires cut&paste of a section of code to a different place in the file, but lets start.
You go to
C:\Program Files (x86)\Steam\steamapps\common\Steel Division 2\Mods\yourmodname\GameData\UserInterface\Use\OutGame
and find UISpecificOutGameModPanelView.ndf
in it there are two sections that control the look of mod center menu that you are interested in. One controls the title above the collumn (i.e. NAME, ACTIVE...) and another controls the columns where your mods are listed, checkbox column and others.
Look for ModPanelMultiListTitle is BUCKListDescriptor
Under Elements you are looking for one that has a ElementName = 'ModActive' -> now cut or copy&delete that element section from BUCKListElementDescriptor to the ), just before the next BUCKListElementDescriptor.
Now go back to the top of the Elements section and paste ModActive section before BUCKListElementDescriptor of the element with the ElementName = 'ModName'.

Next you need to find ModPanelMultiListLine is BUCKListDescriptor and here you just repeat the same thing as above. ElementName(s) are the same.
Save, generate mod and reupload :)

If everything had gone right your ACTIVE column with the checkboxes for activating mods in the Mod Center is now to the left of the mod names.


Have fun and enjoy :)
1 条留言
Duq 8 月 9 日 下午 12:54 
Thanks for your amazing work!