mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 20:58:56 +00:00
34 lines
702 B
JavaScript
34 lines
702 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Cameras.Sprite3D
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
Camera: require('./Camera'),
|
|
CameraManager: require('./CameraManager'),
|
|
OrthographicCamera: require('./OrthographicCamera'),
|
|
PerspectiveCamera: require('./PerspectiveCamera')
|
|
|
|
};
|
|
|
|
/*
|
|
var GameObjects = {
|
|
|
|
Sprite3D: require('./sprite3d/Sprite3D'),
|
|
|
|
Factories: {
|
|
Sprite3D: require('./sprite3d/Sprite3DFactory')
|
|
},
|
|
|
|
Creators: {
|
|
Sprite3D: require('./sprite3d/Sprite3DCreator')
|
|
}
|
|
|
|
};
|
|
*/
|