mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 13:13:43 +00:00
Moved Hermite into new Phaser.Path namespace and folder.
This commit is contained in:
parent
2282b9bc1e
commit
3c83850cdf
12 changed files with 7 additions and 1 deletions
|
@ -4,7 +4,6 @@ module.exports = {
|
|||
|
||||
Circle: require('./circle'),
|
||||
Ellipse: require('./ellipse'),
|
||||
Hermite: require('./hermite'),
|
||||
Intersects: require('./intersects'),
|
||||
Line: require('./line'),
|
||||
Point: require('./point'),
|
||||
|
|
7
v3/src/paths/index.js
Normal file
7
v3/src/paths/index.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
// Phaser.Path
|
||||
|
||||
module.exports = {
|
||||
|
||||
Hermite: require('./hermite')
|
||||
|
||||
};
|
Loading…
Reference in a new issue