don't give directional mappers custom names (#24690)

This commit is contained in:
warriorstar-orion
2024-03-26 10:00:44 +00:00
committed by GitHub
parent 138fd7d1b1
commit ee79063d78
-4
View File
@@ -1,21 +1,17 @@
/// Create directional subtypes for a path to simplify mapping.
#define MAPPING_DIRECTIONAL_HELPERS(path, offset_y, offset_x) ##path/directional/north {\
name = "north bump"; \
dir = NORTH; \
pixel_y = offset_y; \
} \
##path/directional/south {\
name = "south bump"; \
dir = SOUTH; \
pixel_y = -offset_y; \
} \
##path/directional/east {\
name = "east bump"; \
dir = EAST; \
pixel_x = offset_x; \
} \
##path/directional/west {\
name = "west bump"; \
dir = WEST; \
pixel_x = -offset_x; \
}