Skip to content

Commit

Permalink
fix: equirectangular should be equivelent to 360 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey committed Aug 29, 2017
1 parent 9e54437 commit f0e5422
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const getInternalProjectionName = function(projection) {
}

if ((/equirectangular/i).test(projection)) {
return '360_CUBE';
return '360';
}

for (let i = 0; i < validProjections.length; i++) {
Expand Down

0 comments on commit f0e5422

Please sign in to comment.