You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When tedding in the morning, keep wetGrass as wetGrass, but set the densityMap to 1
When tedding in the evening, keep wetGrass as wetGrass but set densityMap to 0
When clock hits mid day, replace all heaps of wetGrass (type = wet), and the density map == 0, to dry grass. So this is always half a day later. (compare type, set type, mask densityMap)
When clock hits midnight, do the same but for densityMap == 1
There are only 2 values, so not tedding will also dry it (we can't set a value as 'not tedded'). Is this desired? Maybe we need to use 2 bits instead? (0 = not touched, 1 = morning tedded, 2 = afternoon tedded). We could then set 0 to 4 at midnight, and 4 to dryGrass, so grass dries in 24 hours. This could depend on rain.
The text was updated successfully, but these errors were encountered:
When tedding, swap input/output (swap values of DRY_GRASS and GRASS) so it inputs GRASS and DRYGRASS and outputs GRASS.
Also set the density bit to 1.
At midday and midnight, turn all wet grass into dry grass where bit is 1. (Do this before the wet grass swath reduction).
This does not allow auto-drying in the USA. (maybe this can be done in a simple way by a parameter in growth / daylight / something, and setting grass to drygrass every midnight)
Use a single density map:
When tedding in the morning, keep wetGrass as wetGrass, but set the densityMap to 1
When tedding in the evening, keep wetGrass as wetGrass but set densityMap to 0
When clock hits mid day, replace all heaps of wetGrass (type = wet), and the density map == 0, to dry grass. So this is always half a day later. (compare type, set type, mask densityMap)
When clock hits midnight, do the same but for densityMap == 1
There are only 2 values, so not tedding will also dry it (we can't set a value as 'not tedded'). Is this desired? Maybe we need to use 2 bits instead? (0 = not touched, 1 = morning tedded, 2 = afternoon tedded). We could then set 0 to 4 at midnight, and 4 to dryGrass, so grass dries in 24 hours. This could depend on rain.
The text was updated successfully, but these errors were encountered: