...
Requests either a specific or all components to shut themselves down. All components except libraries and the Launcher should listen to this message. When the parameter matches its component ID or 'all', it should shut itself down. Before exiting, the component needs to send out a vrProcEnd with its own ID as paramateras parameter. Note that, unlike vrComponent, no second parameter is present, therefore all sub-modules should exit when receiving the kill request.
...
- component-id, contains the ID of the particular component. This can be a module type, like 'renderer' or 'nlu', or a specific module, like 'npceditor'.
- all, string, indicating that all online modules should exit.
Examples
Code Block |
---|
vrKillComponent renderer |
...
Code Block |
---|
vrKillComponent |
...
nvb |
...
Code Block |
---|
vrKillComponent all |
Sending Components
This message will usually only be send by the launcher Launcher.
Receiving Components
All components except libraries should implement listening to this message.