Skip to content

OnScientistRecalled

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnScientistRecalled( BradleyAPC instance, ScientistNPC scientist )
{
    Puts( "OnScientistRecalled works!" );
}

Location

  • BradleyAPC::OnScientistMounted(ScientistNPC scientist)
csharp
//---
	{
		this.mountedScientistPrefabs.Add(item);
	}
	this.activeScientists.Remove(scientist);
	this.numberOfScientistsToSpawn++;
	Interface.CallHook("OnScientistRecalled", this, scientist);
}

Released under the MIT License.