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.
GameObject to add to
Name of component to add
Example:
GameObject.Find("Mod3DAPI").SendMessage("Add3DComponent", new object[]
{
Instance,
"Thruster3D"
}, SendMessageOptions.DontRequireReceiver);
Last updated
Was this helpful?