We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I tried to set crossOrigin = "anonymous" using assetPrefix: true it's works well except texture(401 error)
so I add below code
and tried to find http options in TextHandler.load but, It's {retry:this.retryRequests} set by default.
I think user can change this options.
Not engine code change like below
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description
I tried to set crossOrigin = "anonymous" using assetPrefix: true
it's works well except texture(401 error)
mouse: new pc.Mouse(this.canvas),
assetPrefix: true,
});
so I add below code
and tried to find http options in TextHandler.load
but, It's {retry:this.retryRequests} set by default.
I think user can change this options.
Not engine code change like below
xhr.open(method, url, options.async);
options.withCredentials = true; //Add quick fix solution
xhr.withCredentials = options.withCredentials !== undefined ? options.withCredentials : false;
The text was updated successfully, but these errors were encountered: