Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compressed texture problem #17

Closed
fridrisnew opened this issue Jan 25, 2017 · 1 comment
Closed

Compressed texture problem #17

fridrisnew opened this issue Jan 25, 2017 · 1 comment
Milestone

Comments

@fridrisnew
Copy link

fridrisnew commented Jan 25, 2017

In src/loader/Loader.js on line 2297 you have :

 case 'texture':

                if (file.key.split('_').pop() === 'truecolor')
                {
                    this.loadImageTag(file);
                }
                break;

i think there should be something like this :

 case 'texture':

                if (file.key.split('_').pop() === 'truecolor')
                {
                    this.loadImageTag(file);
                } else {
			  // load pvr files.	
                           this.xhrLoad(file, this.transformUrl(file.url, file), 'arraybuffer', this.fileComplete);
			 }
                break;

or simply remove break; before case 'binary':

@samme
Copy link
Collaborator

samme commented Apr 1, 2017

Hi @fridrisnew, is this an API bug?

@samme samme added the not a bug label Apr 2, 2017
@samme samme closed this as completed Apr 2, 2017
@samme samme removed the not a bug label Apr 18, 2017
@samme samme reopened this Apr 18, 2017
@samme samme modified the milestone: 2.7.7 Apr 18, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants