Update double input issues, pigman is no longer unbound, limit his weapon access too

This commit is contained in:
Michal Pikulski
2025-12-16 18:58:50 +01:00
parent 0055efaee2
commit a2eb27f8f3
9 changed files with 362 additions and 78 deletions

View File

@@ -124,6 +124,15 @@ namespace Common.Input
public bool IsDragging => _isDragging;
public bool IsEnabled => _isEnabled;
/// <summary>
/// Protected property to allow derived classes to set enabled state
/// </summary>
protected bool Enabled
{
get => _isEnabled;
set => _isEnabled = value;
}
#endregion
#region Lifecycle