mirror of
https://github.com/ppy/osu.git
synced 2026-05-13 20:33:35 +08:00
9b3dba939e
- depends on https://github.com/ppy/osu-framework/pull/6737 Adds simple input settings section for pens that allows disabling the handler and adjusting sensitivity. The section appears in-between Tablet and Touch, and only on SDL3 (desktop and mobile). The pen sensitivity is completely independent from mouse sensitivity. <img width="537" height="149" alt="image" src="https://github.com/user-attachments/assets/448eebba-84ea-4daf-8428-3bd07739bd6f" /> <br> Keep in mind that the "Confine mouse cursor to window" mouse setting also affects pens, feel free to suggest UX improvements. Also, toggling "High precision mouse" might affect pens on certain configurations. Edit: added image with updated header. Previously, it was "Device: Pen". --------- Co-authored-by: Dean Herbert <pe@ppy.sh>
21 lines
1001 B
XML
21 lines
1001 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<SupportedOSPlatformVersion>21.0</SupportedOSPlatformVersion>
|
|
<RuntimeIdentifiers>android-x86;android-arm;android-arm64</RuntimeIdentifiers>
|
|
<AndroidPackageFormat>apk</AndroidPackageFormat>
|
|
<MandroidI18n>CJK;Mideast;Rare;West;Other;</MandroidI18n>
|
|
<AndroidHttpClientHandlerType>Xamarin.Android.Net.AndroidMessageHandler</AndroidHttpClientHandlerType>
|
|
<!-- NullabilityInfoContextSupport is disabled by default for Android -->
|
|
<NullabilityInfoContextSupport>true</NullabilityInfoContextSupport>
|
|
<EmbedAssembliesIntoApk>true</EmbedAssembliesIntoApk>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="ppy.osu.Framework.Android" Version="2026.428.0" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<!-- Fody does not handle Android build well, and warns when unchanged.
|
|
Since Realm objects are not declared directly in Android projects, simply disable Fody. -->
|
|
<DisableFody>true</DisableFody>
|
|
</PropertyGroup>
|
|
</Project>
|