Add 3D Component

This function is used to add components from the mod to a gameobject in yours.

The function is actually called Add3DComponent. It only takes two parameters.

  1. GameObject to add to

  2. Name of component to add

Example:

GameObject.Find("Mod3DAPI").SendMessage("Add3DComponent", new object[]
{
    Instance,
    "Thruster3D"
}, SendMessageOptions.DontRequireReceiver);

Last updated