Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Setting up a Development Environment: Difference between revisions

From Kerbal Space Program 2 Modding Wiki
Spacewarp>Munix
No edit summary
m 6 revisions imported
 
(No difference)

Latest revision as of 17:45, 9 October 2024

There are three main types of projects that you will be creating most of the time:

  • Unity project - used to add objects such as parts or planets into the game.
  • .NET project - mostly composed of C# code, useful for example for various small QoL and gameplay enhancements or fixes, etc.
  • Mixed project - a combination of the previous two, used for example if you want to create parts with custom modules, or when making a gameplay tool with a UI.

To set up a standalone Unity project, see Setting up Unity.

For the .NET and mixed project types, you can use the SpaceWarp.Template. Further instructions are provided on the repository's homepage.