keeperfx
keeperfx copied to clipboard
Added FLASH_NEUTRAL_ROOM_COLOURS config option
Tested it to work, but is white really the best color here? I see it is brighter than regular hero stuff, but I still think people might get confused. What would you think of a dark brown?
Tested it to work, but is white really the best color here? I see it is brighter than regular hero stuff, but I still think people might get confused. What would you think of a dark brown?
I only used white for consistency with the level previewers (both the DKTools ones and my own). Without seeing it, I reckon dark brown could be mistaken for dirt path.
Tested it to work, but is white really the best color here? I see it is brighter than regular hero stuff, but I still think people might get confused. What would you think of a dark brown?
I only used white for consistency with the level previewers (both the DKTools ones and my own). Without seeing it, I reckon dark brown could be mistaken for dirt path.
The previewers aren't really something the majority of players are familiar with at all.
But this is you:
This is with a brown from the palette:
Hmm... 🤔
The neutral next to the hero could be mistaken for some other terrain, I reckon.
Would it be possible to keep the flashing, but make it flash slowly instead? That way surely it does not hurt the eyes of the people it bothers now.
Would it be possible to keep the flashing, but make it flash slowly instead? That way surely it does not hurt the eyes of the people it bothers now.
Yeah i was thinking the same. Maybe making the interval configurable:
FLASH_NEUTRAL_INTERVAL=5
I think the default is 1 or 2 turns between each color switch?
Would it be possible to keep the flashing, but make it flash slowly instead? That way surely it does not hurt the eyes of the people it bothers now.
I'm not sure 🤔. The game looks at the game turn anded by 3.
color = (turn - (turn % frametime))/frametime % 4 that should allow you to set the frametime
color = (turn - (turn % frametime))/frametime % 4 that should allow you to set the frametime
Where would timeframe be specified? This new setting?