API reference
Every public class, method, and event in @codexo/exojs. Generated from source.
interfaceSystemRegistrationOptions
@codexo/exojs / core / stable
Options accepted by SystemRegistry.add.
4
props
0
methods
0
events
Import
import { SystemRegistrationOptions } from '@codexo/exojs'Options accepted by SystemRegistry.add.
Properties4
Systems this one must run after. See SystemRegistrationOptions.before.
Systems this one must run before, additive to (not a replacement for) order - see SystemRegistry class docs for how before/after combine with order/registration sequence.
order?: numberOverrides System.order for this registration only.
Restrict this registration to the named phases. By default a system takes part in every phase whose method it defines, which is what almost every system wants. Pass this when an object happens to carry a method whose name matches a phase without meaning to be that phase - a controller with its own update() that should only draw, say. Naming a phase the system does not implement is ignored.
Source