RimWorld Class Docs

Started by Iamkriil, October 13, 2018, 05:52:23 PM

Previous topic - Next topic

Iamkriil

Is there documentation on all of the C# classes?  Something like Java Docs that show packages, classes and methods: https://javaee.github.io/javaee-spec/javadocs/

Does anything like this exist for RimWorld? If not, is there anyway to get a copy of commented source code?  (I found a decompiled copy of the source, but alas, no comments, and working through the code to find what classes I can inherit from or modify is a huge task).

mipen

There are some source files supplied with the game, you'll search through the game folders for them (I can't remember where they are). But otherwise there aren't any docs. You can use ilspy to decompile the assembly and look through the code, it's a bit easier than having an actual copy of the decompile code. It let's you click through the methods and properties and follow them around, search for things and see what is used by what etc