feat: add initial People Playground mod development kit

This commit is contained in:
2026-01-06 06:35:51 +03:00
parent b89c805060
commit 566791ce62
1095 changed files with 40280 additions and 1 deletions

View File

@@ -0,0 +1,54 @@
URL: https://wiki.studiominus.nl/internalReference/MapProperties.html
Title: People Playground Modding - MapProperties
==================================================
public class MapProperties
[System.Serializable]
No description provided
Fields
public MapBounds MapBounds
No description provided
public string Name
[Space] [Tooltip("Name of the map.")]
No description provided
public string DNS_Description
[Tooltip("A brief description of the map.")]
No description provided
public Vector2Int Bounds_Center
[Tooltip("The center of the map in meters.")]
No description provided
public Vector2Int Bounds_Size
[Tooltip("The size of the boundary of the map in meters.")]
No description provided
public float Ambient_Temperature
[Tooltip("The default ambient temperature of the map.")]
No description provided
public float Lightning_Chance
[Range(0, 100)] [Tooltip("The default chance of the artificial sky generating a lightning bolt.")]
No description provided
public float Gravity
[Tooltip("The default gravity of the map.")]
No description provided
public bool Snowing
[Tooltip("Will the Map start off snowing?")]
No description provided
public bool Raining
[Tooltip("Will the Map start off raining?")]
No description provided
public bool Foggy
[Tooltip("Will the Map start off foggy?")]
No description provided
Methods
public void UpdateBounds()
No description provided