Interface IHotspotComponent
Allows an entity to act as a hotspot (i.e can be interacted with).
Inherited Members
System.IDisposable.Dispose()
System.ComponentModel.INotifyPropertyChanged.PropertyChanged
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public interface IHotspotComponent : IComponent, IDisposable, INotifyPropertyChanged
Properties
| Improve this Doc View SourceDisplayHotspot
Gets or sets whether the hotspot name should be shown by a hotspot label when hovering over the entity. DisplayName
Declaration
bool DisplayHotspot { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean |
|
Interactions
Allows subscribing to interaction events for this entity.
Declaration
IInteractions Interactions { get; }
Property Value
| Type | Description |
|---|---|
| IInteractions | The interactions. |
See Also
| Improve this Doc View SourceWalkPoint
Gets or sets an optional walk point for the entity which might be used before interacting with the entity, depending on how the IApproachComponent is configured.
Declaration
PointF? WalkPoint { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<PointF> | The walk point. |