08-13-2020, 02:11 AM -
(06-25-2020, 03:36 PM)cheekibreekiski Wrote: Is there any way to actually use the portal of power, I plugged it into my computer and it recognizes the portal, but I can find a way to actually use it in-game.
The original code change lists some steps you have to go through:
To make it work on linux:
You need to add:
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", MODE="0666"
To a rule file in /etc/udev/rules.d/
Note that this give r/w access to all usb devices by default, if you want to specify a specific device you can use:
SUBSYSTEM=="usb", ATTRS{idVendor}=="ABCD", ATTRS{idProduct}=="1234", MODE="0666"
changing idVendor&idProduct values to the VID/PID of the device you want to allow.
To make it work on windows:
You need to change the driver of the accessory you want to use to WinUsb one with zadig: https://zadig.akeo.ie/
You can revert drivers through device manager, the device will be listed under "Universal Serial Bus Devices", right click on it, Properties => Driver => Update Driver => Browse my computer for driver software => Let me pick... => USB Input Device(or whatever the previous driver was).