Skip to content

OnInterferenceOthersUpdate

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private void OnInterferenceOthersUpdate( AutoTurret instance )
{
    Puts( "OnInterferenceOthersUpdate works!" );
}

Location

  • AutoTurret::UpdateInterferenceOnOthers()
csharp
private void UpdateInterferenceOnOthers()
{
	if (Interface.CallHook("OnInterferenceOthersUpdate", this) != null)
	{
		return;
	}
	foreach (AutoTurret current in this.nearbyTurrets)
	{
//---

Released under the MIT License.