mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-12-03 07:07:54 -07:00
Fix #5291
This commit is contained in:
parent
84a891b061
commit
7297f04f60
1 changed files with 5 additions and 1 deletions
|
@ -210,7 +210,10 @@ export class Room {
|
|||
//#region Avatar
|
||||
const avatarUrl = user.avatarUrl;
|
||||
|
||||
const iconTexture = new THREE.TextureLoader().load(avatarUrl);
|
||||
const textureLoader = new THREE.TextureLoader();
|
||||
textureLoader.crossOrigin = 'anonymous';
|
||||
|
||||
const iconTexture = textureLoader.load(avatarUrl);
|
||||
iconTexture.wrapS = THREE.RepeatWrapping;
|
||||
iconTexture.wrapT = THREE.RepeatWrapping;
|
||||
iconTexture.anisotropy = 16;
|
||||
|
@ -467,6 +470,7 @@ export class Room {
|
|||
});
|
||||
|
||||
const img = new Image();
|
||||
img.crossOrigin = 'anonymous';
|
||||
img.onload = () => {
|
||||
const uvInfo = def.texture[t].uv;
|
||||
|
||||
|
|
Loading…
Reference in a new issue