Recommended Software

From RimWorld Wiki
Jump to navigation Jump to search


Modding Tutorials

This is a short list of programs that are useful for making mods. Most of the options listed here are free, but if you have development experience and have a favorite IDE, then by all means use what you're familiar and/or comfortable with!

XML Editors[edit]

While XML files are simple text files, basic Windows Notepad lacks any kind of syntax highlighting and rich text editors such as WordPad will insert invisible characters that are not recommended for machine-readable data files. The following are basic code editors that are recommended for writing or editing XML files:

Software OS Description
Notepad++ Windows Light-weight editor with extension support. Adding the "XML Tools" plugin is recommended for editing XML files, as it adds additional validation and error-checking.
Visual Studio Code Linux/Windows/Mac A text editor with emphasis on productivity and extension support. Also has an excellent XML plugin.
Sublime Text Linux/Windows/Mac Natively supports many programming languages and markup languages, and its functionality can be extended by users with plugins - A brief overview of its functionality can be found here and a full course here
XML Notepad Windows XML-oriented editor with a lot of features you will most likely never use in Rimworld modding
Geany Linux/Windows/Mac Extremely lightweight text editor with syntax highlighting and some other basic features oriented towards XML and code editing.


IDEs[edit]

Writing C# code for custom assemblies requires not only code editing capability but also the ability to compile raw code into executable code. This is generally best done in an Integrated Development Environment that has a compiler built-in.

Software OS Description
Visual Studio Windows/Mac Microsoft's flagship IDE and strongly recommended if you are running Windows. The Community Edition is free for individuals and small teams, and does everything you need to make a RimWorld mod assembly out of the box.
Visual Studio Code Linux/Windows/Mac VS Code can technically be used for C# as well, but you will need to do a little more legwork to get it to actually build the assembly as it's not a true IDE. VS Code is generally recommended if you are using Linux, since there is no Visual Studio for Linux.
SharpDevelop Windows Free IDE specifically made for C#
Xamarin Windows/Mac It's free but you need to register to download it. Xamarin is an open-source platform for building modern and performant applications for iOS, Android, and Windows with .NET. Avaliable as an extension to Visual studio 2022 and 2019
Rider Windows/Mac/Linux Unless you're a student it costs, but offers a lot of tools across all platforms.

Whichever IDE you choose, make sure it's capable of compiling for .NET Framework 4.7.2. If you for whatever reason don't have this framework installed, you can download it here.

C# Decompilers[edit]

See Decompiling source code

Graphics Software[edit]

For making textures, you will need a graphics program. The following are simply popular options, any software that can export transparent PNGs will work for RimWorld though.

Raster Graphics[edit]

Raster graphics are graphics that are made of pixels. They can lose detail when resized, but may be more comfortable to use for those with traditional art experience.

Software OS Description
Adobe Photoshop Windows/Mac RimWorld's original graphics are made in Photoshop and the official Art Source generally contains PSD files. Photoshop is the gold standard for graphics software, but also very expensive. There are a lot of free alternatives.
GIMP Linux/Windows/Mac A free, open-source alternative to Photoshop that's been around since 1998. GIMP has a large user community, with great list of tutorials on the official sites
Krita Linux/Windows/Mac A free digital painting software. Better suited than GIMP for freehand painting and should feel like home pretty quick for Photoshop users.
Paint.net Windows A free photo editing program preferred by some modders. It is Windows-only.

Vector Graphics[edit]

Vector graphics are created using mathematical formulae for lines and shading. They may be easier to work with if you do not have an art tablet or prior art experience, and RimWorld's simplistic art style is easily emulated with vector graphics. Note however that as noted above, RimWorld's art source is in Photoshop files and not vectors as many people believe.

Software OS Description
Adobe Illustrator Windows/Mac Adobe's primary vector drawing software package. Also the gold standard for vector graphics, but just like Photoshop is expensive. A few free options also exist.
Inkscape Linux/Windows/Mac Free vector graphic program with a steeper learning curve due to the vector based image editing.

Audio Software[edit]

Recording your own audio for mods might be too much to ask, but editing audio is always possible. This can be done with the following software or your own alternative:

Software OS Description
Audacity Linux/Windows/Mac Audio editing software with many tutorials online, lots of useful functionality and a relatively readable interface

Additional Links[edit]