Uses Dalamud's Inter Plugin Communication feature to connect to the Dalamud plugin version of IINACT. This bypasses using the WebSocket, and allows sharing memory from within the same process, instead of needing a background thread and a de/serialization process.
More importantly, it bypasses the need to connect using a WebSocket. This is useful as some builds of wine/proton on linux do not allow a process to connect to a WebSocket being hosted by the same pid.
This does not replace the standard WebSocket connection mode, and simply adds the option to use IPC instead. Reverting back to WebSocket mode is available in the plugin config options.
Uses Dalamud's Inter Plugin Communication feature to connect to the Dalamud plugin version of IINACT. This bypasses using the WebSocket, and allows sharing memory from within the same process, instead of needing a background thread and a de/serialization process.
More importantly, it bypasses the need to connect using a WebSocket. This is useful as some builds of wine/proton on linux do not allow a process to connect to a WebSocket being hosted by the same pid.
This does not replace the standard WebSocket connection mode, and simply adds the option to use IPC instead. Reverting back to WebSocket mode is available in the plugin config options.