We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9b4631 commit cf5a70dCopy full SHA for cf5a70d
docs/Subclassing_API.md
@@ -168,6 +168,19 @@ class ExplodeTrigger(TriggerBox):
168
WorldDestroyedByDaemons.event = True
169
```
170
171
+You can make your events networkedm using the 'multicast', 'server', 'client' and 'reliable' attributes:
172
+
173
+```py
174
+class ExplodeTrigger(TriggerBox):
175
176
+ # this event will be run on the server and in reliable mode
177
+ def WorldDestroyedByDaemons(self):
178
+ ue.log_warning('WORLD DESTROYED')
179
+ WorldDestroyedByDaemons.event = True
180
+ WorldDestroyedByDaemons.server = True
181
+ WorldDestroyedByDaemons.reliable = True
182
+```
183
184
185
Reloading
186
---------
0 commit comments