Interface GameSetting
interface GameSetting {
folder?: string;
key: string;
namespace?: string;
options: CoreSetting;
store?: MinimalWritable<any>;
}
folder?: string;
key: string;
namespace?: string;
options: CoreSetting;
store?: MinimalWritable<any>;
}
Hierarchy
- TJSGameSettings.Options.GameSetting<ExtraProps>
- GameSetting (View Summary)
Index
Properties
Properties
Optional
folder
folder?: string
The name of the TJSSvgFolder
to put this setting in to group them.
key
key: string
The setting key to register.
Optional
namespace
namespace?: string
The setting namespace; usually the ID of the package. If not provided the associated namespace with the
instance of TJSGameSettings
will be used.
options
Core game setting configuration options.
Optional
store
An existing store instance to use.
Defines the game setting with UI options for TJSGameSettings.register.