C# Project
Use this class to get paths to project folders. C# API functions that require a path, expect it to be relative to the Content folder of the project.
For example, to get a path to a mesh, you can use Project class like this:
string pathToMesh = Project.GetContentPath() + "/Meshes/sphere.fbx";
Here is the Project class
public static class Project
{
public static string GetProjectPath(); // The path to the projects root directory
public static string GetContentPath(); // The path to the `Content` folder
public static string GetCachePath(); // The path to the `Cache` folder
public static string GetRendererCachePath(); // The path to the `Cache/Renderer` folder
public static string GetSavedPath(); // The path to the `Saved` folder. Currently, it's not really used
}