Table of Contents

Class RegionEventData

Namespace
FishMMO.Shared
Assembly
FishMMO.Shared.dll

ECA event data for region-related triggers. Carries the Region reference and whether the FishNet prediction system is currently reconciling.

public class RegionEventData : EventData
Inheritance
RegionEventData
Inherited Members

Constructors

RegionEventData(ICharacter, Region, bool)

Creates a new RegionEventData.

public RegionEventData(ICharacter initiator, Region region, bool isReconciling)

Parameters

initiator ICharacter

The character triggering the region event.

region Region

The region involved.

isReconciling bool

Whether the prediction system is reconciling.

Properties

IsReconciling

Whether the prediction system is currently reconciling. Client-only visual effects should be suppressed during reconciliation to prevent visual artifacts.

public bool IsReconciling { get; }

Property Value

bool

Region

The region that was entered, stayed in, or exited.

public Region Region { get; }

Property Value

Region