Modding Wiki
  • 🏠Home
  • 🫂How to contribute
  • Playing with Mods
    • Discovering Mods
    • Installing Mods
      • On Game Clients
      • For Multiplayer
      • On Dedicated Servers
      • No Console Support
    • Troubleshooting
    • Reporting Bugs
    • Uninstalling Mods
  • Creating Mods
    • Getting Started Modding
      • Setting Up the Modding SDK
      • Testing the Example Mods
      • Viewing Console Logs
    • Modding Limitations
    • Inspecting Other Mods' Code
    • Modding Tools
      • Scripting IDE
      • Unity Explorer
      • Asset Ripper
      • NG Tools Missing Script Recovery
      • DnSpy
      • Attaching a Debugger
    • Common Concepts
      • Unique Names and IDs
    • Modding Libraries
      • CoreLib
    • Modding Examples
      • Items
        • Weapons and Tools
        • Armor
        • Food
      • Obtaining items
        • Adding Crafting Recipe
        • Adding your items to crafters
        • Adding items to Enemy loot
      • Placeables
        • Tiles
      • NPCs and Enemies
      • UI and Interactions
      • Client-Server communications
    • Inspecting Base Game Content
      • Importing Ripped Assets to your Editor
      • Inspecting Assets In-Game
      • Inspecting Game Code
    • Updating your Modding SDK
    • Releasing Mods
      • Create a mod.io Page
      • Mod Files Upload
  • Concepts
    • Important Folder Paths
    • Technologies and Tools
    • Elevated Access
  • Archive
    • General Reference
    • Outdated Unity Setup Guide
    • Outdated IL2CPP Guides
      • Getting started with modding
      • How to view game source code
      • How to setup your Unity project
      • How to install Core Keeper mono version
Powered by GitBook
On this page
  • Visual Studio
  • JetBrains Rider

Was this helpful?

Edit on GitHub
Export as PDF
  1. Creating Mods
  2. Modding Tools

Scripting IDE

An IDE (Integrated Development Environment) is a tool that allows you to write code.

Visual Studio

Visual Studio is one of the IDE's you can use to develop mods. While basic in its features, it will allow you to make content. You probably already installed a copy of Visual Studio while installing Unity. If not, you can install one from the Unity Hub by modifying your installation.

A correctly configured Visual Studio project will give you intelligent suggestions and syntax checking as you write mod C# files.

To use it, in the Unity editor, open Edit > Preferences..., go to the External Tools heading, select Visual Studio in the "External Script Editor" dropdown.

Unity can automatically generate a Visual Studio solution file for you to work in. If you have issues with that, you can click Regenerate project files(In External Tools menu). This will create a .sln file in the root folder of your Unity project.

JetBrains Rider

JetBrains Rider is another IDE you can use. It is not free, however, students and some other people can get access to it for free. Rider features are much more advanced than Visual Studio, and it is recommended that if you can get access to it, you use it (IE you're a student).

Rider has smart auto-completions, code generation and a slew of suggestions on how to write your code better.

To use it, in the Unity editor, open Edit > Preferences..., go to the External Tools heading, select JetBrains Rider in the "External Script Editor" dropdown.

PreviousModding ToolsNextUnity Explorer

Last updated 8 months ago

Was this helpful?