phaser3-swipe-plugin

Mobile swipe plugin for Phaser 3.

Usage no npm install needed!

<script type="module">
  import phaser3SwipePlugin from 'https://cdn.skypack.dev/phaser3-swipe-plugin';
</script>

README

Installation

npm i --save phaser3-swipe-plugin

# Or 

yarn add phaser3-swipe-plugin

Usage

  1. Import
import SwipePlugin from 'phaser3-swipe-plugin'
  1. Add to config (GameConfig) plugins property.
  ...
  plugins: {
    global: [
      {
        key: 'RandomNamePlugin',
        plugin: SwipePlugin,
        start: true,
        data: {
          // you can give your value for min offset
          offset: 123
        }
      }
    ]
  }
  ...

Tested on Phaser 3.15.1.