Bootstrapper
Noir.Bootstrapper: table
An internal module of Noir that is used to initialize and start services.
Do not use this in your code.
Wraps user-created methods in a service with code to prevent them from being called if the service hasn't initialized yet.
Do not use this in your code. This is used internally.
Parameters
service
: NoirService
Calls :WrapServiceMethodsForService() for all services.
Do not use this in your code. This is used internally.
Initialize all services.
This will order services by their InitPriority
and then initialize them.
Do not use this in your code. This is used internally.
Start all services.
This will order services by their StartPriority
and then start them.
Do not use this in your code. This is used internally.
Determines whether or not the server this addon is being ran in is a dedicated server.
This evaluation is then used to set Noir.IsDedicatedServer
.
Do not use this in your code. This is used internally.
Last updated