be3c73bc96
Improved USB support. Improved rumble. (all in all, the program is becoming actually nice to use)
49 lines
No EOL
2.7 KiB
XML
49 lines
No EOL
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<configuration>
|
|
<startup>
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
|
</startup>
|
|
|
|
<appSettings>
|
|
<!--Motion Server IP: the default is localhost; you can change it to 0.0.0.0 (all interfaces) or a specific LAN IP
|
|
which is **useful if you want to access the server from another computer in a network.** Default: 127.0.0.1-->
|
|
<add key="IP" value="127.0.0.1" />
|
|
|
|
<!--Motion Server port: the default is 26760; if it conflicts with another server set it to anything valid
|
|
but in that case also change the port in PadTest and cemuhook.ini accordingly. Default: 26760 -->
|
|
<add key="Port" value="26760" />
|
|
|
|
<!--Rumble motor period in millisec. Lower means more granular vibration, higher is more stable.-->
|
|
<!--The response of rumble does not only depend on this setting and it's always high. Default: 300 -->
|
|
<add key="RumblePeriod" value="300" />
|
|
|
|
<!--The controller's HD rumble settings for the low/high frequency rumble. Change to change the pitch of the rumble.-->
|
|
<!--Don't set above ~1200. Default: 20 and 400 -->
|
|
<add key="LowFreqRumble" value="20" />
|
|
<add key="HighFreqRumble" value="400" />
|
|
|
|
<!--Rumble Setting. Turns rumble on or off.-->
|
|
<!--On is "true"; off is "false". Default: true -->
|
|
<add key="EnableRumble" value="true" />
|
|
|
|
<!--Swap A-B and X-Y buttons; if on, this mimicks the Xbox layout by the button name, rather than by the physical layout.-->
|
|
<!--Also swaps buttons when using "Also use for buttons/axes"-->
|
|
<!--On is "true"; off is "false". Default: false -->
|
|
<add key="SwapButtons" value="false" />
|
|
|
|
<!-- Determines whether or not HidGuardian's process whitelist is purged on start-up -->
|
|
<!-- Can interfere with other programs using HidGuardian, but prevents whitelist from being clogged from crashed instances -->
|
|
<!-- Default: true -->
|
|
<add key="PurgeWhitelist" value="true"/>
|
|
|
|
<!-- Determines whether or not to use HidGuardian (improves compatibility with other programs, like Steam, when set to "false") -->
|
|
<!-- When "true", BetterJoyForCemu will hide the Pro/Joycons from other programs to prevent glitching out on exit and to prevent DI/XI clashes in certain programs -->
|
|
<!-- Default: true -->
|
|
<add key="UseHIDG" value="true"/>
|
|
|
|
<!-- Determines whether or not the program will expose detected controllers as Xbox 360 controllers -->
|
|
<!-- When "false", BetterJoyForCemu is only usable with CEMU. -->
|
|
<!-- Default: true -->
|
|
<add key="ShowAsXInput" value="true"/>
|
|
</appSettings>
|
|
</configuration> |