
* Cleanup * Remove redundant locales * Start SVG Fixes… Better +/- buttons Fix the grips Bumpers Better directional pad More SVG stuff Grip adjustments Final stuff * Make image bigger * Border radius * More cleanup * Restructure * Restructure Rumble View * Use compiled bindings where possible * Round those pesky corners * Ack Suggestions * More suggestions * Update src/Ryujinx.Ava/UI/Views/Input/RumbleInputView.axaml.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> --------- Co-authored-by: Ac_K <Acoustik666@gmail.com>
27 lines
584 B
C#
27 lines
584 B
C#
namespace Ryujinx.Ava.UI.ViewModels
|
|
{
|
|
public class RumbleInputViewModel : BaseModel
|
|
{
|
|
private float _strongRumble;
|
|
public float StrongRumble
|
|
{
|
|
get => _strongRumble;
|
|
set
|
|
{
|
|
_strongRumble = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
private float _weakRumble;
|
|
public float WeakRumble
|
|
{
|
|
get => _weakRumble;
|
|
set
|
|
{
|
|
_weakRumble = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
} |