I've spent some time narrowing my issue down, and maybe I am missing something, but I could not find info about it anywhere, so decided to post question here - and hopefully help anyone who might encounter the issue later.
Okay, so, first of all, I have 2 simple sync Events:
UNetWeaver error with SyncEvent
Okay, so, first of all, I have 2 simple sync Events:
Code (csharp):
- // Send slot info as byte (enum), cause can't use 'object sender' in UNet :(
- public delegate void ModuleEventsHandler(ModuleSlot slot);
- [SyncEvent]
- public event ModuleEventsHandler EventOnKilled;...