Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Description:
Summary:
This PR addresses the issue of dynamically generating and loading avatars for creatures in the game, specifically focusing on automating the generation of the
avatars.less
file and ensuring correct avatar references during the build process. However, the creature avatars are still not being displayed in the summon grid and top bar despite the assets being preloaded correctly.Changes Made:
1. Created
generateAvatar.js
script to auto-generateavatars.less
:Automatically generates the avatars.less file during the build process, containing CSS classes for all avatars.
This eliminates the need to manually update
avatars.less
when new avatars are added to the game.2. Updated
webpack.config.js
to handle avatar assets correctly:Ensured that avatar images like
Chimera.jpg
are served with their original filenames by modifying theassetModuleFilename
configuration, avoiding file hashing for avatars.This makes sure that the avatars can be referenced by their base key or cardboard key.
3. Refactored assets.ts to properly load avatar assets:
Explicitly loads both the base key and cardboard key for each avatar.
This ensures that both the top bar and summon grid use the correct avatar images.
4. Cleaned up avatars.less:
Removed the outdated method of managing avatars and now rely on the auto-generated
avatars.less
file to ensure that all avatars are correctly mapped to CSS classes.The file is always up-to-date with the latest avatars, and changes to the avatars are handled automatically.
Current Status:
The avatar grid is now automatically generated and the assets are preloaded correctly.
However, the creature avatars are still not being displayed in the summon grid and top bar.
Avatars are being loaded into Phaser, but the actual rendering logic (for the summon grid and top bar) isn’t correctly referencing or displaying the avatars as expected.
PR Objective:
This PR successfully automates avatar generation, ensuring that new avatars are correctly added to the game and preloaded into Phaser. However, the issue of creature avatars not being displayed in the summon grid and top bar still needs to be resolved. The next step is to address the rendering logic that displays these avatars.