-
Notifications
You must be signed in to change notification settings - Fork 11
[Feature Request] Indicate if resource count is going up or down #23
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
With high number of items being made its hard to tell if there is more items being made than consumed
Show an arrow up/down, if resource is increasing/decreasing based on its production rate and consumption rate from other resources.
Show by how much its increasing/decreasing

Something like
const indicator = "‒"; // Not increasing or decreasing
charcoal.consumptionRate = brick.productionRate * brick.charcoalRequirement + glass.productionRate * brick.charcoalRequirement ...;
const trendRate = charcoal.productionRate - charcoal.consumptionRate; // items/sec
if(trendRate > 0 ){
indicator = "🔼"; // increasing
}elseif(trendRate < 0 ){
indicator = "🔽"; // decreasing
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request