Skip to content

trevren11/vocal-abduction

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vocal-abduction

Pronunciation game using BYU-ODH/apeworm

Development

Requirements

To prepare assets, run the following commands:

  • npm install (install grunt dependencies)
  • bower install (install bower dependencies)
  • grunt wiredep (adds bower dependencies to index.html)
  • grunt sprites (creates spritesheet)

The index.html file is found under the app/ directory.

If you have questions, feel free to post an issue.

Making Display Objects:

All JavaScript classes should be wrapped in require.js callbacks and should extend the DisplayObjectContainer class of PIXI.js. Here's a minimal example

in a file called app/js/FinglyFlangle.js

define(function() {
  function FinglyFlangle() {
    PIXI.DisplayObjectContainer.call(this);
    PIXI.EventTarget.call(this);
  };
  FinglyFlangle.prototype = Object.create(PIXI.DisplayObjectContainer.prototype);
  FinglyFlangle.prototype.constructor = FinglyFlangle;
  return FinglyFlangle;
});

Releases

No releases published

Packages

No packages published