Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@phaserjs/editor-scripts-base

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@phaserjs/editor-scripts-base

The base scripts for Phaser Editor.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
54
decreased by-30.77%
Maintainers
0
Weekly downloads
 
Created
Source

Basic Phaser Editor script nodes

This project contains the main scripts to use with a Phaser Editor project.

It includes the basic script nodes and user components: ScriptNode and UserComponent classes.

The scripts are coded in TypeScript with ES modules.

Installing (NPM)

Install this package in your game:

npm install @phaserjs/editor-scripts-base

Also, you should add this package to the phasereditor2d.config.json file in your project, in the scripts section:

{
    "scripts": ["@phaserjs/editor-scripts-base"]
}

Installing (vanilla JS)

  • Get the files in the browser folder and copy them into your JavaScript project. It includes Phaser Editor files and JavaScript files.

User components

This package provides a couple of general-purpose user components. Including the UserComponent class, which is the base class for all user components.

  • UserComponent - it is a class you can use as the base class for your user components.
  • Action Target - it provides information to script nodes about what object is the target of an action.

Base scripts

Contains basic/abstract functionality. Often, you will create prefab variants of them (extend them).

  • ScriptNode - the base class for all the scripts.

Target Action component

This user component is a hint to the action-like script nodes about what object is the target of the action. The possible targets are the game object of the script node (the default), or any of the arguments of the execute(...) method of the action.

The *Target property of the component allows these values: GAME_OBJECT (default), ARG_1, ARG_2, ARG_3, etc...

If you are implementing a custom action script, you may want to look into the Target Action component to determine the object to receive the action. This is an example:

class MyAction {

    execute(...args: any[]) {

        const obj = TargetActionComp.getActionTarget(this, args);

        this.performMyCustomAction(obj);
    }
}

ScriptNode

The base of all the scripts. Probably it is already available in your project (if you generated it with Phaser Editor).

This class provides methods for managing the node's children, and implementing the scene events: awake, start, and update.

Keywords

FAQs

Package last updated on 23 Sep 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc