Joni Savolainen
Joni Savolainen
Unity 2019 support removed in #63.
First step of the transition to source generation is implemented in #64 and #65.
ProvideAttribute is transitioned to source generation in #66.
Turns out that transitioning the dependency injection system to source generation is a much bigger task than I anticipated. I will remove it from the scope of this task and...
After spending some time investigating, it seems like actions like dispatch and time travel are sent through a channel called `sc-[socket id]`. However, `@redux-devtools/remote` seems to be listening to the...
The closest I got was this: ```typescript void (async () => { for await (const data of agServer.exchange.subscribe('sc-' + socket.id)) { void agServer.exchange.transmitPublish(channelToWatch, data); } })(); ``` But since channels...