minity icon indicating copy to clipboard operation
minity copied to clipboard

Cannot negate variable or do simplest arithmetic inside condition statement (in `if`)

Open AgainPsychoX opened this issue 3 years ago • 0 comments

This does not work:

if $mx < -{?motion_threshold} {

nor

if ?motion_threshold > -$mx {

Workaround:

$mx *= -1
if ?motion_threshold > $mx {
    $mx *= -1
    // Do stuff
}
$mx *= -1

(but it's far away from perfect, since else-if chaining is impossible...)

AgainPsychoX avatar Dec 09 '21 22:12 AgainPsychoX