feat: add initial People Playground mod development kit

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

View File

@@ -0,0 +1,25 @@
URL: https://wiki.studiominus.nl/internalReference/DecalInstruction.html
Title: People Playground Modding - DecalInstruction
==================================================
public struct DecalInstruction
All information needed to create a decal on an object.
Properties
public DecalDescriptor type { get; set; }
The decal descriptor. This decides what decal will be placed.
public Vector2 globalPosition { get; set; }
The traget position in global space.
public float size { get; set; }
The size of the decal.
public Color colourMultiplier { get; set; }
The colour multiplier of the decal
Methods
public (constructor) DecalInstruction(DecalDescriptor type, Vector2 globalPosition, float size = 1)
No description provided
public (constructor) DecalInstruction(DecalDescriptor type, Vector2 globalPosition, Color color, float size = 1)
No description provided