Skip to main content
Version: Phaser v4.0.0-rc.6

ScenePluginFile

A single Scene Plugin Script File suitable for loading by the Loader.

These are created when you use the Phaser.Loader.LoaderPlugin#scenePlugin method and are not typically created directly.

For documentation about what all the arguments and configuration options mean please see Phaser.Loader.LoaderPlugin#scenePlugin.

Constructor

new ScenePluginFile(loader, key, [url], [systemKey], [sceneKey], [xhrSettings])

Parameters

nametypeoptionaldescription
loaderPhaser.Loader.LoaderPluginNoA reference to the Loader that is responsible for this file.
keystring | Phaser.Types.Loader.FileTypes.ScenePluginFileConfigNoThe key to use for this file, or a file configuration object.
urlstringYesThe absolute or relative URL to load this file from. If undefined or null it will be set to <key>.js, i.e. if key was "alien" then the URL will be "alien.js".
systemKeystringYesIf this plugin is to be added to Scene.Systems, this is the property key for it.
sceneKeystringYesIf this plugin is to be added to the Scene, this is the property key for it.
xhrSettingsPhaser.Types.Loader.XHRSettingsObjectYesExtra XHR Settings specifically for this file.

Scope: static

Extends

Phaser.Loader.File

Source: src/loader/filetypes/ScenePluginFile.js#L14
Since: 3.8.0

Inherited Methods

From Phaser.Loader.File:


Public Methods

onProcess

<instance> onProcess()

Description:

Called automatically by Loader.nextFile.

This method controls what extra work this File does with its loaded data.

Overrides: Phaser.Loader.File#onProcess

Source: src/loader/filetypes/ScenePluginFile.js#L82
Since: 3.8.0


Inherited Members

From Phaser.Loader.File: