Attention Mod Authors: Mod Compatibility
Updated 2 days 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.