Socket
Socket
Sign inDemoInstall

artpacks

Package Overview
Dependencies
70
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    artpacks

cascading texture/sound artwork pack loader


Version published
Weekly downloads
2
Maintainers
1
Install size
8.13 MB
Created
Weekly downloads
 

Readme

Source

artpacks

Cascading texture/sounds artwork pack loader

Usage

var createArtpacks = require('artpacks');

var artpacks = createArtpacks([url1, url2, url3, ...]);

blob = artpacks.getTexture('name');
blob = artpacks.getTexture('category/name');
blob = artpacks.getTexture('namespace:category/name');
blob = artpacks.getTexture('namespace:name');
blob = artpacks.getSound('name');

The given URLs are loaded using binary XHR. A loadedAll event is emitted in case you want to do something after all of the packs are loaded.

getTexture and getSound both return Blob objects per the W3C File API. You can use URL.createObjectURL(blob) in the browser to get a blob: URL usable for img or audio src, etc.

Texture and sound names are accepted with or without a "namespace" prefix; if omitted, any namespace is accepted. The loaded packs are searched until a match is found (cascading similar to Cascading Style Sheets), so you can load multiple packs and they will be logically combined together.

Supported artpack formats

ResourcePack: a hierarchical zip archive format supporting textures, sounds, and other resources, developed by Mojang for Minecraft 1.6+. Many resource packs developed for Minecraft therefore should be compatible with this module. If you're looking for a free artwork pack for voxel-related games, check out ProgrammerArt, specifically the ResourcePack distribution.

(Minecraft is property of Mojang specifications)

Other formats:

Example

Visit the online demo, or download some packs (not included) and then run npm start

License

MIT

Keywords

FAQs

Last updated on 04 Apr 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc