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

@paxperscientiam/generate-phaser3-filepack

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@paxperscientiam/generate-phaser3-filepack

[Phaser 3](https://github.com/photonstorm/phaser) Pack File Generator ---

  • 5.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

Phaser 3 Pack File Generator

WARNING

This is still a work in progress. Until complete, it will not write a file; however, you can pipe the output to a file. Contributions welcome!

This script generates a File Pack in JSON form according to the framework definition.

Features

Generates a Pack File based on organization of asset files, using a configuration file to shape output.

Usage

This script requires a configuration file following the following structure:

{
  "extensions"?: string // optional comma-separated list of allowed file extensions, default action is not to filter by extension
  "options":? {
    "keyFormat"?: "namespaced"|"filebasename" 
  },
  "targets": [
    {
      "key": string // unique key to describe set of targeted files
      "basePath": string // which directory to search
      "hint"?: ["audio"|"image"|"bitmapFont"] // optionally assert asset type
      "extensions"?: string // comma separated list of allowed file extensions, takes precedence over higher-level definition
      "ignoredPaths"?: RegExp|RegExp[]
    },
    {
     // additional targets
    }
   ]
}

For assets that are not automatically inferred, you'll probably want to take advantage of hint options.

Invocation:

npx  @paxperscientiam/generate-phaser3-filepack <configfile.json>

Notes

This script does NOT write anything to file; it's up to you to do so.

If you set a "hint", it's assumed accurate.

Auto inferred types

  • atlas
  • atlasXML
  • audioSprite
  • htmlTexture
  • multiatlas
  • obj
  • spritesheet
  • tilemapCSV
  • tilemapImpact
  • tilemapTiledJSON
  • unityAtlas
  • audio (:IPhaserFilePackGenericAsset)
  • binary (:IPhaserFilePackBinaryAsset)
  • css
  • glsl
  • html
  • image (:IPhaserFilePackGenericAsset)
  • json
  • svg
  • text
  • video
  • xml

Hint-reliant types

  • atlas
  • bitmapFont

Improvements

  • add mode to merge new with pre-existing
  • add check to prevent changing keys of unmoved files
  • filter out commonsystem and temp files. EG .DS_Store
  • post process adjustments.
    • allow set asBlob and noAudio in post-processing.
  • use phaser's type for development testing

Bugs

  • only selectively collapse asset set (EG: collapse audio, but not toher types with files with same file-basenames)
  • filter out unknowns explicitly
  • review warnings about key uniqueness. EG this on videos.

Contributors

  • All the programmers Copilot ripped off
  • Fine folks at liberachat
  • Phaser community

FAQs

Package last updated on 11 Nov 2023

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