Hi,
ist there a way to display the efx Value without the Unit. (get effect_slider_text 1 1)
for example:
1 bt without bt. I will only show the 1.
ist there a way to display the efx Value without the Unit. (get effect_slider_text 1 1)
for example:
1 bt without bt. I will only show the 1.
Posted Fri 24 Jun 22 @ 11:44 am
Not easily but possible
you could do the same with get_effect_slider_text instead of effect_beats.
param_contains " " `effect_beats 1 & param_cast 'text' 2` ? effect_beats 1 & param_cast 'text' 1 :
param_contains " " `effect_beats 1 & param_cast 'text' 3` ? effect_beats 1 & param_cast 'text' 2 :
param_contains " " `effect_beats 1 & param_cast 'text' 4` ? effect_beats 1 & param_cast 'text' 3 :
param_contains " " `effect_beats 1 & param_cast 'text' 5` ? effect_beats 1 & param_cast 'text' 4 :
you could do the same with get_effect_slider_text instead of effect_beats.
Posted Fri 24 Jun 22 @ 6:27 pm