This package has been deprecated

Author message:

please use the package 'phaser-behavior-plugin' instead

phaser-plugin-behavior

0.1.1 • Public • Published

Behavior

A Phaser Plugin based on behaviors of Construct2.

Install

npm install phaser-plugin-behavior --save

<script src="path/to/phaser.js"></script>
<script src="path/to/phaser-plugin-behavior.js"></script>
<script src="path/to/your-game.js"></script>

Usage

// create a behavior
var sampleBehavior = {

  // default options of the behavior
  opts: {
    key: 'value'
  },

  create: function(object, options, game) {
    // called when the behavior is ADDED to a game object
  },
  
  destroy: function(object, options, game) {
    // called when the behavior is REMOVED to a game object
  },
  
  preUpdate: function(object, options, game) {
    // called at the very start of the update cycle,
    // before any other subsystems have been updated (including Physics)
  },
  
  update: function(object, options, game) {
    // called after all the core subsystems (Input, Tweens, Sound, etc) 
    // and the State have updated, but before the render
  },
  
  render: function(object, options, game) {
    // called right after the Game Renderer completes, but before the State.render
  },
  
  postRender: function(object, options, game) {
    // alled after the Game Renderer and State.render have run
  }
}

// initialize the plugin
var behaviorPlugin = game.plugins.add(Phaser.Plugin.Behavior)

// add the behavior system to any object (e.g. a sprite)
behaviorPlugin.enable(myObject)

// add a behavior
myObject.behaviors.add('my_awesome_key', // a behavior instance key/identifier
  sampleBehavior, // the behavior instance key/identifier
  { key: 'value' } // configuration
)

// remove a behavior
myObject.behaviors.remove('my_awesome_key')

// add others behaviors... be criative!
myObject.behaviors.add('fire ball', behaviorSpell, { damage: 300 })
myObject.behaviors.add('frost nova', behaviorSpell, { damage: 100, slow: 0.4 })
myObject.behaviors.add('invulnerability', behaviorImortal, { duration: 150 })

Package Sidebar

Install

npm i phaser-plugin-behavior

Weekly Downloads

7

Version

0.1.1

License

MIT

Last publish

Collaborators

  • luizbills