Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
### Fixed
- Character selector previews now render NPCs facing south.

## [2.4.2] 2026-05-23
### Fixed
- Improved NPC rendering, positions should now match the game exactly [#130](https://github.com/CCDirectLink/crosscode-map-editor/issues/130), [#132](https://github.com/CCDirectLink/crosscode-map-editor/issues/132)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ export class CharacterWidgetComponent extends OverlayWidget {
const prop: typeof this.props[0] = {
prefix: char.split('.')[0],
full: char,
img: await this.generateImage<NpcAttributes>({characterName: char}, 'NPC')
img: await this.generateImage<NpcAttributes>({
characterName: char,
npcStates: [{face: 'SOUTH'}]
}, 'NPC')
};
return prop;
}));
Expand Down
Loading