Default URL where Catana will search for plugins and scripts. Substring {name} will be replaced with the name of the plugin. Substring {file} will be replaced with the name of the script file.
Returns an array of loaded plugins
Returns an array of loaded scripts
Map of the existing shared variables and their values
Adds new component to the list of disposable components. Components marked disposable might be easily removed by plugins/scripts using a single call to removeDisposableComponents
component to add
Adds plugin and/or scripts retrieved from the loaded files.
loaded script or plugin files
Creates a request to create a new Modal window with the given content.
title of the modal window
elements to show in the window
Adds new plugin record by acquiring necessary dependencies and loading the needed scripts
Adds new plugin loaded from the local file, URL or remote repository
path to plugin file
files loaded together with the plugin file. If a script is referenced by the plugin, it is removed from this array.
Adds new script loaded from file or URL
Attaches given plugin to the update, i.e., its script will be executed with every onUpdate call.
pluginĀ“s UUID
Detaches given plugin from the update function.
pluginĀ“s UUID
Returns delta time, i.e., time since the last update call.
delta time value
Returns an array of JSPy API functions.
Returns data stored for plugin with the given name
Returns script instance corresponding to the given UUID.
Returns script instance corresponding to the given full name (i.e., scope::name)
Creates new script instance with the given code. Does not automatically load it, i.e., add it to plugins.
Returns script record corresponding to the given script name
full name of the script
Returns contents of the specified shared variable
variable name
value of the variable or null
Returns true if the given shared variable is defined, false otherwise
name of the shared variable to look for
boolean determining whether the variable is defined or not
This callback is called by the stage and serves to update update-attached plugins. If an attached plugin fails to execute correctly, it is automatically detached.
Removes all disposable components from the stage
Removes plugin (and related scripts) with the given name.
Removes script with the given UUID.
Removes given shared variable
variable to remove
true if the variable existed and was removed, false otherwise
Executes script with the given full name
Sets new value to the shared variable (varaible shared among plugins/their executions)
variable name
value to set
Generated using TypeDoc
Class for managing plugins, i.e., user-made scripts extending Catana's functionality.