- Source: src/loader/FileTypesManager.js (Line 9)
Methods
-
<static> destroy()
-
Removed all associated file types.
- Since: 3.0.0
- Source: src/loader/FileTypesManager.js (Line 50)
-
<static> install(loader)
-
Static method called when a LoaderPlugin is created.
Loops through the local types object and injects all of them as properties into the LoaderPlugin instance.
Parameters:
Name Type Description loader
Phaser.Loader.LoaderPlugin The LoaderPlugin to install the types into.
- Since: 3.0.0
- Source: src/loader/FileTypesManager.js (Line 15)
-
<static> register(key, factoryFunction)
-
Static method called directly by the File Types.
The key is a reference to the function used to load the files via the Loader, i.e.
image
.Parameters:
Name Type Description key
string The key that will be used as the method name in the LoaderPlugin.
factoryFunction
function The function that will be called when LoaderPlugin.key is invoked.
- Since: 3.0.0
- Source: src/loader/FileTypesManager.js (Line 34)