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

three-m2loader

Package Overview
Dependencies
Maintainers
0
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

three-m2loader

three.js loader for importing M2 assets from World of Warcraft.

  • 5.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
5
decreased by-37.5%
Maintainers
0
Weekly downloads
 
Created
Source

three-m2loader · GitHub license NPM Package

M2 Loader for three.js

three-m2loader allows you to import M2 assets from World of Warcraft into your three.js app.

druidcat2.m27ne_druid_worktable02.m2gilneas_fountain01.m2
imageimageimage

Table of contents

  1. Basic Usage
  2. Animations
  3. Skin Textures
  4. Misc

Basic Usage

If you want to load an asset into your three.js app, you have to put all external resources like .blp or .skin files into the same directory like the M2 file. Depending on the M2 version, you have to name resources files with their FileDataID or with their actual file name.

A minimal code example looks like so:

import { M2Loader } from 'three-m2loader';

const loader = new M2Loader();
loader.load( 'models/cat/druidcat2.m2', function ( group ) {

    scene.add( group );

} );

Animations

Sequences

Animations in M2 are called sequences. The playback of sequences is managed with an instance of SequenceManager. You can access it in the userData field of the returned group.

const manager = group.userData.sequenceManager;

You can list all available sequences of a M2 asset with listSequences(). The list represents an array with objects that hold the id and name of a sequence.

const sequences = manager.listSequences();

If you want to play a sequence, you can use playSequence(). stopSequence() stops the playback.

manager.playSequence( sequence.id ); // start playback
manager.stopSequence( sequence.id ); // stop playback

If you want to stop the playback of all active sequences, you can use the convenience method stopAllSequences().

Variations

Certain sequences like Stand or AttackUnarmed have multiple variations. You can list them for a given sequence via listVariations().

const variations = manager.listVariations( sequence.id );

Keep in mind that all sequences have at least one variation (default). If you want to play or stop a sequence with a specific variation, use the second parameter of playSequence() and stopSequence().

manager.playSequence( sequence.id, variationIndex ); // start playback
manager.stopSequence( sequence.id, variationIndex ); // stop playback
Global Sequences

Certain M2 assets have so-called global sequences. They represent animations that are active all the time like the flowing water of a fountain or the effects of elemental spirits. You can check if a M2 asset has global sequences with hasGlobalSequences() and control the playback via playGlobalSequences() and stopGlobalSequences().

if ( manager.hasGlobalSequences() ) {

    manager.playGlobalSequences();

}

Skin Textures

Some models (especially creatures) require the definition of skin textures. This can be done with an instance of M2Options and the setSkin( id1, id2, id3 ) method. You have to pass in the FileDataIDs of the textures that should represent the skin.

const options = new M2Options();
options.setSkin( 2015464, 123060 ); // 2015464 and 123060 are FileDataIDs representing BLP textures

const loader = new M2Loader();
loader.load( 'bearmount/bearmount.m2', function ( group ) {

    scene.add( group );

}, undefined, undefined, options );

You can use the same approach to overwrite the default skin of creatures (e.g. to switch the body color).

To retain the parameter order of three.js loaders, the options parameter comes after the three callback functions onLoad(), onProgress() and onError().

Misc

This loader requires three.js in version r144 or higher.

Keywords

FAQs

Package last updated on 05 Aug 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