You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
🆙 Fix Youtube TV's
This commit is contained in:
+6
-2
@@ -28,11 +28,15 @@ export class FurnitureDynamicThumbnailVisualization extends IsometricImageFurniV
|
||||
if (image.complete && image.width > 0 && image.height > 0) {
|
||||
const texture = Texture.from(image);
|
||||
texture.source.scaleMode = 'linear';
|
||||
this.setThumbnailImages(texture, thumbnailUrl); // Pass URL here
|
||||
this.setThumbnailImages(texture, thumbnailUrl);
|
||||
} else {
|
||||
console.error("Image failed to load properly:", thumbnailUrl);
|
||||
this.setThumbnailImages(null);
|
||||
}
|
||||
};
|
||||
|
||||
image.onerror = () => {
|
||||
this.setThumbnailImages(null);
|
||||
};
|
||||
} else {
|
||||
this.setThumbnailImages(null);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user