Class RegionEventData
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
initiatorICharacterThe character triggering the region event.
regionRegionThe region involved.
isReconcilingboolWhether 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
Region
The region that was entered, stayed in, or exited.
public Region Region { get; }