Added comments and slightly refactored code for deletion of temp node

This commit is contained in:
2026-05-01 16:44:52 +02:00
parent 643712f529
commit afd7aa50c4
3 changed files with 14 additions and 5 deletions

View File

@@ -25,6 +25,9 @@ pub const ROAD_COLOUR = clr.black;
/// Colour of the road that is highlighted
pub const ROAD_HIGHLIGHTED_COLOUR = clr.green;
/// Regular text size
pub const TEXT_SIZE = 50;
/// Text size that is used for displaying entity IDs
pub const ENTITY_DATA_TEXT_SIZE = TEXT_SIZE / 2;
/// Text colour in which entity IDs are displayed if toggled
pub const ENTITY_DATA_TEXT_COLOUR = clr.orange;