MCPcopy Create free account
hub / github.com/Monogatari/Monogatari / components

Method components

src/monogatari.ts:952–959  ·  view source on GitHub ↗

* @static components - Returns the list of registered Components. * * @return {Component[]} - List of registered Components

()

Source from the content-addressed store, hash-verified

950 * @return {Component[]} - List of registered Components
951 */
952 static components (): StaticComponent[] {
953 /** @type {boolean} */
954 const experimentalFeatures = this.setting ('ExperimentalFeatures');
955
956 return this._components.filter(component => {
957 return component._experimental === false || experimentalFeatures === true;
958 });
959 }
960
961 /**
962 * @static component - Access to an specific component class

Callers 13

onStartMethod · 0.95
onLoadMethod · 0.95
registerComponentMethod · 0.95
unregisterComponentMethod · 0.95
componentMethod · 0.95
setupMethod · 0.95
bindMethod · 0.95
initMethod · 0.95
resetGameFunction · 0.80
shouldProceedFunction · 0.80
willProceedFunction · 0.80
shouldRollbackFunction · 0.80

Calls 1

settingMethod · 0.95

Tested by

no test coverage detected