Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
modding:start [2021/09/15 17:14] – giwayume | modding:start [2024/06/26 14:50] (current) – [Modding] joneirik | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | [[../ | ||
- | |||
===== Modding ===== | ===== Modding ===== | ||
+ | [[..: | ||
+ | |||
+ | > WIP: Guides for creating mods for the game | ||
---- | ---- | ||
- | ==== Modding | + | ==== Topics ==== |
Pick a category for what type of modding you want to do to the game: | Pick a category for what type of modding you want to do to the game: | ||
| [[modding: | | [[modding: | ||
- | | [[modding:datatable: | + | | [[modding:datatableguide|Data Table Guide]] | Modify various game rules and item/ |
| [[modding: | | [[modding: | ||
| [[modding: | | [[modding: | ||
Line 24: | Line 25: | ||
==== Basic Concepts ==== | ==== Basic Concepts ==== | ||
- | **Bloodstained: | + | **Bloodstained: |
**Game Assets** - When I use the word **asset** from this point forward, it means anything the game uses to work - 3D models, animations, | **Game Assets** - When I use the word **asset** from this point forward, it means anything the game uses to work - 3D models, animations, | ||
Line 35: | Line 36: | ||
- Unpack the **.pak** files containing the game's existing assets. | - Unpack the **.pak** files containing the game's existing assets. | ||
- In the unpacked directory, locate the **.uasset** file containing the game asset you want to modify. | - In the unpacked directory, locate the **.uasset** file containing the game asset you want to modify. | ||
- | - Modify the **.uasset** file depending on what type of asset it is. Pick one of the [[modding: | + | - Modify the **.uasset** file depending on what type of asset it is. Pick one of the [[modding: |
- Set up a blank project in Unreal Engine and import the modified asset, package (cook) the project to generate new **.uasset** files. | - Set up a blank project in Unreal Engine and import the modified asset, package (cook) the project to generate new **.uasset** files. | ||
- Use one of the modding tools such as [[modding: | - Use one of the modding tools such as [[modding: | ||
Line 41: | Line 42: | ||
- Run the game to test. | - Run the game to test. | ||
- | This is just a high-level overview. [[modding: | + | This is just a high-level overview. [[modding: |