Init(args)
Scripting Reference

◆ Init1< TFirstComponent, TSecondComponent, TFirstArgument, TSecondArgument, TThirdArgument >() [1/2]

static UninitializedGameObject<TFirstComponent, TSecondComponent> Sisus.Init.GameObjectT2Extensions.Init1< TFirstComponent, TSecondComponent, TFirstArgument, TSecondArgument, TThirdArgument > ( this GameObject< TFirstComponent, TSecondComponent > @  this,
TFirstArgument  firstArgument,
TSecondArgument  secondArgument,
TThirdArgument  thirdArgument 
)
static

Initialize the first added component of type TFirstComponent using the three provided arguments.

Template Parameters
TFirstComponentType of the first added component.
TSecondComponentType of the second added component.
TFirstArgumentType of the first argument.
TSecondArgumentType of the second argument.
TThirdArgumentType of the third argument.
Parameters
thisnew GameObject being initialized.
firstArgumentThe first argument passed to the first added component's Init function.
secondArgumentThe second argument passed to the first added component's Init function.
thirdArgumentThe third argument passed to the first added component's Init function.
Returns
Partially initialized GameObject still requiring Init2 to be called until it is ready for usage.
Exceptions
InitArgumentsNotReceivedExceptionThrown if TFirstComponent class does not implement IInitializable<TFirstArgument, TSecondArgument, TThirdArgument> and did receive the arguments during initialization.
Type Constraints
TFirstComponent :Component 
TFirstComponent :IThreeArguments 
TFirstComponent :IFirstArgument<TFirstArgument> 
TFirstComponent :ISecondArgument<TSecondArgument> 
TFirstComponent :IThirdArgument<TThirdArgument> 
TSecondComponent :Component