0.1.1 • Published 2 years ago

jj-spielfigur-3d v0.1.1

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
2 years ago

JJ-Spielfigur-3D

Comic-Figures and Archetypes in 3D for Games / E-Learning drawn by Jens Janetzki.


Install

npm i jj-spielfigur-3d;

Usage

HTML in vue.js

<div ref="three" class="three"></div>

JAVASCRIPT in vue.js

import jjFigure from 'jj-spielfigur-3d';

export default {
  mounted () {
    this.animation = new jjFigure(this.$refs.three, 'ina');
    this.animation.run('day');
  }
}