Please disclose if your mod was created primarily using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
Attention Mod Authors: Mod Compatibility
Updated a year agoCompatibility
ATTENTION MOD AUTHORS:
Most mods should not need to do anything to be compatible.
However, if your mod has a MonoBehavior component that is attached to a Piece that could be moved and movement causes problems for your component working correctly then you can implement the following methods to respond appropriately when redecorated:
public void OnRedecorateBefore();
public void OnRedecorateAfter((Vector3 Position, Quaternion Rotation) before); // This is a tuple, not a typo.