Fractional DAS/ARR
What feature do you want to suggest to the game?
Fraction DAS/ARR, like in tetr.io. 0.5ARR should be used in fast-paced step-reset 20G modes such as Master Final so that less locks occur during DAS.
Hypothetically if the DAS timer is made to accept decimals, then probably a """fractional""" DAS/ARR can be made?
(if I recall correctly - back in the days of v0.8 I made a mod that made Techmino Guideline, and I used a decimal soft drop timer to do the 20x thing)
in my head i picture changing
// pseudocode
if(arrTimer >= arr) // arrTimer is increasing, not decreasing
{
moveLeft(); // or right
arrTimer = 0;
}
into
while(arrTimer >= arr) // so that if das/arr < 1, it can repeat multiple times per frame
{
moveLeft();
arrTimer = arr - arrTimer; // e.g. if arr is 4.8 and 5 frames have elapsed, the arr timer will be 0.2
}
note: the above pseudocode sections may not reflect the actual inner workings of Techmino.
this is not good, because it's not real fractions, it will make das not stable
Better if they can be adjusted using ms (milliseconds) tho