UNPKG

phaser-ce

Version:

Phaser CE (Community Edition) is a fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

17 lines (14 loc) 450 B
/** * Add Phaser.Physics.P2 before the class name in the p2.js file */ var path = require('path'); exports.handlers = {}; exports.handlers.newDoclet = function (e) { var doclet = e.doclet; if ((doclet.meta.filename === 'p2.js') && (doclet.kind === 'class' || doclet.kind === 'interface')) { doclet.longname = 'Phaser.Physics.P2.' + doclet.longname; console.log('Changed `longname` to %s', doclet.longname); } };