├── .github └── workflows │ └── publish_documentation_to_github_pages.yml ├── .gitignore ├── README.md ├── docs ├── .nav.yml ├── Custom-Character-Creation.md ├── Item-&-Equipment-IDs-and-Names.md ├── Mod-Creation │ ├── .nav.yml │ ├── Assets │ │ ├── Artifacts.md │ │ ├── Character.md │ │ ├── Difficulty.md │ │ ├── Elites.md │ │ ├── Extraction.md │ │ ├── Icons.md │ │ ├── Interactables.md │ │ ├── Items.md │ │ ├── Items │ │ │ └── Using-the-RoR2CreateItemTemplate.md │ │ ├── Loading-Assets.md │ │ ├── Localization.md │ │ ├── Merging-Materials.md │ │ ├── Shaders │ │ │ ├── HG-Triplanar-Terrain-Blend.md │ │ │ └── Working-Shaders-outside-of-an-AssetRipper-Project.md │ │ ├── Skills.md │ │ ├── Skins │ │ │ └── Creating-skin-for-vanilla-characters-with-custom-model.md │ │ ├── Sounds │ │ │ └── WWise │ │ │ │ ├── Custom-Music.md │ │ │ │ └── Getting-Started.md │ │ ├── Stage.md │ │ ├── Translation.md │ │ ├── UI.md │ │ └── Void-Items.md │ ├── C#-Programming │ │ ├── Assembly-References.md │ │ ├── Code-Analysis.md │ │ ├── Configuration.md │ │ ├── Console-Commands.md │ │ ├── Debugging-Your-Mods.md │ │ ├── Game-Code │ │ │ ├── Common-Components,-Events-and-Methods.md │ │ │ └── Tips-and-Tricks.md │ │ ├── Hooking.md │ │ ├── Hooking │ │ │ ├── Hooking.md │ │ │ ├── IL-Hook.md │ │ │ └── On-Hook.md │ │ ├── Hot-Reloading.md │ │ ├── IContentPackProvider.md │ │ ├── IL-Hooking.md │ │ ├── Mod-Compatibility:-Soft-Dependency.md │ │ ├── Networking │ │ │ ├── MiniRpcLib.md │ │ │ ├── R2API.NetworkingAPI.md │ │ │ ├── Server-side-and-client-side-mods.md │ │ │ └── UNet.md │ │ ├── Reflection-Crash-Course.md │ │ └── Unity-and-MonoBehaviour.md │ ├── Cookbook.md │ ├── Developer-Reference │ │ ├── Addressables-Assets-Keys.md │ │ ├── Items-and-Equipments-Data.md │ │ ├── Layers-and-collisions.md │ │ ├── Prefabs.md │ │ ├── Scene-Names.md │ │ ├── Sound-‐-Wwise-Events.md │ │ └── Style-Reference-Sheet.md │ ├── Getting-Started │ │ ├── First-Mod.md │ │ └── So-you-want-to-mod-Risk-of-Rain-2?.md │ ├── IDE │ │ ├── Visual-Studio-Code.md │ │ └── Visual-Studio │ │ │ └── Post-Build-Events.md │ ├── Testing │ │ └── Testing-Multiplayer-Alone.md │ ├── ThunderKit │ │ ├── Crash-Course-and-Getting-Started.md │ │ ├── Upgrading-your-project-to-use-R2API's-Split-Assemblies.md │ │ └── Using-the-DOTS-framework-in-Modding.md │ ├── Unity-Editor-Usage │ │ ├── Editor-Scripts.md │ │ ├── RoR2-Editor-Kit-Utilization.md │ │ └── Using-MonoBehaviour-Scripts-in-Editor.md │ ├── Unity-Version.md │ └── Updating-Your-Mods │ │ ├── .nav.yml │ │ ├── 1.3.9-Memory-Optimization │ │ ├── Core-API-Changelog-1.3.9.md │ │ └── Updating-Guide.md │ │ ├── For-Seekers-of-the-Storm.md │ │ ├── For-Survivors-of-the-Void.md │ │ ├── Updating-Core-API-Changelog-1.3.7.md │ │ ├── Updating-Core-API-Changelog-1.3.8.md │ │ ├── Updating-Core-API-Changelog-1.4.0.md │ │ └── Updating-Core-API-Changelog-1.4.1.md ├── Playing │ ├── .nav.yml │ ├── FAQ.md │ ├── Getting-Started.md │ └── Running-modded-and-unmodded-game-with-shortcuts.md └── Tools │ ├── BepInEx.md │ ├── Glossary.md │ └── Source-Code-Diff.md ├── last_commit_hash.txt ├── media ├── Layer.Collisions.png ├── bepinex │ ├── bepinex_archive_files.PNG │ ├── build_solution.png │ ├── drag_to_install.png │ ├── example_plugin_video.gif │ ├── install_plugin.png │ └── terminal.png ├── dumping_the_unity_assets │ ├── exporting_assets.png │ ├── files_loaded.png │ ├── loading_files.png │ ├── open_utiny.png │ └── result.png ├── netstandard2.0Framework.png ├── realtime_collaboration_with_vs2019 │ ├── host_file_menu.png │ ├── join_file_menu.png │ ├── join_session_dialog.png │ ├── live_session_help.png │ └── session_ready_notification.png └── rider │ ├── compound_options.jpg │ ├── debugger_in_game.jpg │ ├── mono_compound.jpg │ ├── mono_options.jpg │ ├── rider_run_config.jpg │ ├── run_config.jpg │ ├── selecting_debug_configuration.jpg │ └── standalone_option.jpg ├── mkdocs.yml └── requirements.txt /.github/workflows/publish_documentation_to_github_pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/.github/workflows/publish_documentation_to_github_pages.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | site -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/.nav.yml -------------------------------------------------------------------------------- /docs/Custom-Character-Creation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Custom-Character-Creation.md -------------------------------------------------------------------------------- /docs/Item-&-Equipment-IDs-and-Names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Item-&-Equipment-IDs-and-Names.md -------------------------------------------------------------------------------- /docs/Mod-Creation/.nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/.nav.yml -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Artifacts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Artifacts.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Character.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Character.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Difficulty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Difficulty.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Elites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Elites.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Extraction.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Icons.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Interactables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Interactables.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Items.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Items/Using-the-RoR2CreateItemTemplate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Items/Using-the-RoR2CreateItemTemplate.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Loading-Assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Loading-Assets.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Localization.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Merging-Materials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Merging-Materials.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Shaders/HG-Triplanar-Terrain-Blend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Shaders/HG-Triplanar-Terrain-Blend.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Shaders/Working-Shaders-outside-of-an-AssetRipper-Project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Shaders/Working-Shaders-outside-of-an-AssetRipper-Project.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Skills.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Skills.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Skins/Creating-skin-for-vanilla-characters-with-custom-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Skins/Creating-skin-for-vanilla-characters-with-custom-model.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Sounds/WWise/Custom-Music.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Sounds/WWise/Custom-Music.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Sounds/WWise/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Sounds/WWise/Getting-Started.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Stage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Stage.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Translation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Translation.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/UI.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Assets/Void-Items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Assets/Void-Items.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Assembly-References.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Assembly-References.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Code-Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Code-Analysis.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Configuration.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Console-Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Console-Commands.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Debugging-Your-Mods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Debugging-Your-Mods.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Game-Code/Common-Components,-Events-and-Methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Game-Code/Common-Components,-Events-and-Methods.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Game-Code/Tips-and-Tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Game-Code/Tips-and-Tricks.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Hooking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Hooking.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Hooking/Hooking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Hooking/Hooking.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Hooking/IL-Hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Hooking/IL-Hook.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Hooking/On-Hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Hooking/On-Hook.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Hot-Reloading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Hot-Reloading.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/IContentPackProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/IContentPackProvider.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/IL-Hooking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/IL-Hooking.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Mod-Compatibility:-Soft-Dependency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Mod-Compatibility:-Soft-Dependency.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Networking/MiniRpcLib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Networking/MiniRpcLib.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Networking/R2API.NetworkingAPI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Networking/R2API.NetworkingAPI.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Networking/Server-side-and-client-side-mods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Networking/Server-side-and-client-side-mods.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Networking/UNet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Networking/UNet.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Reflection-Crash-Course.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Reflection-Crash-Course.md -------------------------------------------------------------------------------- /docs/Mod-Creation/C#-Programming/Unity-and-MonoBehaviour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/C#-Programming/Unity-and-MonoBehaviour.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Cookbook.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Developer-Reference/Addressables-Assets-Keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Developer-Reference/Addressables-Assets-Keys.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Developer-Reference/Items-and-Equipments-Data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Developer-Reference/Items-and-Equipments-Data.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Developer-Reference/Layers-and-collisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Developer-Reference/Layers-and-collisions.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Developer-Reference/Prefabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Developer-Reference/Prefabs.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Developer-Reference/Scene-Names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Developer-Reference/Scene-Names.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Developer-Reference/Sound-‐-Wwise-Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Developer-Reference/Sound-‐-Wwise-Events.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Developer-Reference/Style-Reference-Sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Developer-Reference/Style-Reference-Sheet.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Getting-Started/First-Mod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Getting-Started/First-Mod.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Getting-Started/So-you-want-to-mod-Risk-of-Rain-2?.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Getting-Started/So-you-want-to-mod-Risk-of-Rain-2?.md -------------------------------------------------------------------------------- /docs/Mod-Creation/IDE/Visual-Studio-Code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/IDE/Visual-Studio-Code.md -------------------------------------------------------------------------------- /docs/Mod-Creation/IDE/Visual-Studio/Post-Build-Events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/IDE/Visual-Studio/Post-Build-Events.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Testing/Testing-Multiplayer-Alone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Testing/Testing-Multiplayer-Alone.md -------------------------------------------------------------------------------- /docs/Mod-Creation/ThunderKit/Crash-Course-and-Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/ThunderKit/Crash-Course-and-Getting-Started.md -------------------------------------------------------------------------------- /docs/Mod-Creation/ThunderKit/Upgrading-your-project-to-use-R2API's-Split-Assemblies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/ThunderKit/Upgrading-your-project-to-use-R2API's-Split-Assemblies.md -------------------------------------------------------------------------------- /docs/Mod-Creation/ThunderKit/Using-the-DOTS-framework-in-Modding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/ThunderKit/Using-the-DOTS-framework-in-Modding.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Unity-Editor-Usage/Editor-Scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Unity-Editor-Usage/Editor-Scripts.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Unity-Editor-Usage/RoR2-Editor-Kit-Utilization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Unity-Editor-Usage/RoR2-Editor-Kit-Utilization.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Unity-Editor-Usage/Using-MonoBehaviour-Scripts-in-Editor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Unity-Editor-Usage/Using-MonoBehaviour-Scripts-in-Editor.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Unity-Version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Unity-Version.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/.nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/.nav.yml -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/1.3.9-Memory-Optimization/Core-API-Changelog-1.3.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/1.3.9-Memory-Optimization/Core-API-Changelog-1.3.9.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/1.3.9-Memory-Optimization/Updating-Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/1.3.9-Memory-Optimization/Updating-Guide.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/For-Seekers-of-the-Storm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/For-Seekers-of-the-Storm.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/For-Survivors-of-the-Void.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/For-Survivors-of-the-Void.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/Updating-Core-API-Changelog-1.3.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/Updating-Core-API-Changelog-1.3.7.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/Updating-Core-API-Changelog-1.3.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/Updating-Core-API-Changelog-1.3.8.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/Updating-Core-API-Changelog-1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/Updating-Core-API-Changelog-1.4.0.md -------------------------------------------------------------------------------- /docs/Mod-Creation/Updating-Your-Mods/Updating-Core-API-Changelog-1.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Mod-Creation/Updating-Your-Mods/Updating-Core-API-Changelog-1.4.1.md -------------------------------------------------------------------------------- /docs/Playing/.nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Playing/.nav.yml -------------------------------------------------------------------------------- /docs/Playing/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Playing/FAQ.md -------------------------------------------------------------------------------- /docs/Playing/Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Playing/Getting-Started.md -------------------------------------------------------------------------------- /docs/Playing/Running-modded-and-unmodded-game-with-shortcuts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Playing/Running-modded-and-unmodded-game-with-shortcuts.md -------------------------------------------------------------------------------- /docs/Tools/BepInEx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Tools/BepInEx.md -------------------------------------------------------------------------------- /docs/Tools/Glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Tools/Glossary.md -------------------------------------------------------------------------------- /docs/Tools/Source-Code-Diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/docs/Tools/Source-Code-Diff.md -------------------------------------------------------------------------------- /last_commit_hash.txt: -------------------------------------------------------------------------------- 1 | cb57e11bda922032da29d033b6b19a6a81d7e97f 2 | -------------------------------------------------------------------------------- /media/Layer.Collisions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/Layer.Collisions.png -------------------------------------------------------------------------------- /media/bepinex/bepinex_archive_files.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/bepinex/bepinex_archive_files.PNG -------------------------------------------------------------------------------- /media/bepinex/build_solution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/bepinex/build_solution.png -------------------------------------------------------------------------------- /media/bepinex/drag_to_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/bepinex/drag_to_install.png -------------------------------------------------------------------------------- /media/bepinex/example_plugin_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/bepinex/example_plugin_video.gif -------------------------------------------------------------------------------- /media/bepinex/install_plugin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/bepinex/install_plugin.png -------------------------------------------------------------------------------- /media/bepinex/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/bepinex/terminal.png -------------------------------------------------------------------------------- /media/dumping_the_unity_assets/exporting_assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/dumping_the_unity_assets/exporting_assets.png -------------------------------------------------------------------------------- /media/dumping_the_unity_assets/files_loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/dumping_the_unity_assets/files_loaded.png -------------------------------------------------------------------------------- /media/dumping_the_unity_assets/loading_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/dumping_the_unity_assets/loading_files.png -------------------------------------------------------------------------------- /media/dumping_the_unity_assets/open_utiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/dumping_the_unity_assets/open_utiny.png -------------------------------------------------------------------------------- /media/dumping_the_unity_assets/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/dumping_the_unity_assets/result.png -------------------------------------------------------------------------------- /media/netstandard2.0Framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/netstandard2.0Framework.png -------------------------------------------------------------------------------- /media/realtime_collaboration_with_vs2019/host_file_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/realtime_collaboration_with_vs2019/host_file_menu.png -------------------------------------------------------------------------------- /media/realtime_collaboration_with_vs2019/join_file_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/realtime_collaboration_with_vs2019/join_file_menu.png -------------------------------------------------------------------------------- /media/realtime_collaboration_with_vs2019/join_session_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/realtime_collaboration_with_vs2019/join_session_dialog.png -------------------------------------------------------------------------------- /media/realtime_collaboration_with_vs2019/live_session_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/realtime_collaboration_with_vs2019/live_session_help.png -------------------------------------------------------------------------------- /media/realtime_collaboration_with_vs2019/session_ready_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/realtime_collaboration_with_vs2019/session_ready_notification.png -------------------------------------------------------------------------------- /media/rider/compound_options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/rider/compound_options.jpg -------------------------------------------------------------------------------- /media/rider/debugger_in_game.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/rider/debugger_in_game.jpg -------------------------------------------------------------------------------- /media/rider/mono_compound.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/rider/mono_compound.jpg -------------------------------------------------------------------------------- /media/rider/mono_options.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/rider/mono_options.jpg -------------------------------------------------------------------------------- /media/rider/rider_run_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/rider/rider_run_config.jpg -------------------------------------------------------------------------------- /media/rider/run_config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/rider/run_config.jpg -------------------------------------------------------------------------------- /media/rider/selecting_debug_configuration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/rider/selecting_debug_configuration.jpg -------------------------------------------------------------------------------- /media/rider/standalone_option.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/media/rider/standalone_option.jpg -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/risk-of-thunder/R2Wiki/HEAD/requirements.txt --------------------------------------------------------------------------------