Skip to content

Commit

Permalink
[Fix] Texture created by TextureAtlas respects its initial settings (#…
Browse files Browse the repository at this point in the history
…7300)

Co-authored-by: Martin Valigursky <[email protected]>
  • Loading branch information
mvaligursky and Martin Valigursky authored Jan 20, 2025
1 parent 61ce060 commit 68db2b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/framework/handlers/texture-atlas.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ class TextureAtlasHandler extends ResourceHandler {
}

// Create texture atlas resource using the texture from the texture loader
open(url, data) {
open(url, data, asset) {
const resource = new TextureAtlas();
if (data.texture && data.data) {
resource.texture = data.texture;
resource.__data = data.data; // store data temporarily to be copied into asset
} else {
const handler = this._loader.getHandler('texture');
const texture = handler.open(url, data);
const texture = handler.open(url, data, asset);
if (!texture) return null;
resource.texture = texture;
}
Expand Down

0 comments on commit 68db2b1

Please sign in to comment.