Home Reference Source Repository

js/mmd/VMDMotion.js

  1. 'use strict'
  2.  
  3. import Motion from '../base/Motion'
  4.  
  5. /**
  6. * VMDMotion class
  7. * @access public
  8. */
  9. export default class VMDMotion extends Motion {
  10. /**
  11. * constructor
  12. * @access public
  13. * @constructor
  14. */
  15. constructor() {
  16. super()
  17.  
  18. this.name = ''
  19. this.faceMotionArray = new Map()
  20. this.defaultFPS = 30
  21.  
  22. this.shadowArray = []
  23. this.ikArray = []
  24. }
  25. }