Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/actionscript-3/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Actionscript 3 ActionScript Math.abs()条件不起作用_Actionscript 3_Math_Conditional_Absolute - Fatal编程技术网

Actionscript 3 ActionScript Math.abs()条件不起作用

Actionscript 3 ActionScript Math.abs()条件不起作用,actionscript-3,math,conditional,absolute,Actionscript 3,Math,Conditional,Absolute,我有一个数字变量vx,它随着enter frame事件而变化。在enter frame函数中,我有以下代码: if (Math.abs(vx) <= 0.05); { trace(Math.abs(vx)); } 这对任何人都有意义吗?您有一个额外的冒号;'在您的if之后 if(Math.abs(vx)在if之后有一个额外的冒号 if(Math.abs(vx)omg我太迟钝了。太尴尬了!谢谢你看到了。omg我太迟钝了。太尴尬了!谢谢你看到了。 12.544444

我有一个数字变量vx,它随着enter frame事件而变化。在enter frame函数中,我有以下代码:

if  (Math.abs(vx) <= 0.05);
    {
    trace(Math.abs(vx));
    }

这对任何人都有意义吗?

您有一个额外的冒号
;'在您的if之后


if(Math.abs(vx)在if之后有一个额外的冒号


if(Math.abs(vx)omg我太迟钝了。太尴尬了!谢谢你看到了。omg我太迟钝了。太尴尬了!谢谢你看到了。
12.544444075226783
12.418999634474515
12.29480963812977
12.171861541748472
12.050142926330986
11.929641497067676
11.810345082097
11.69224163127603
11.575319214963269
11.459566022813636
11.3449703625855
11.231520658959644
11.119205452370048
11.008013397846348
10.897933263867884
10.788953931229205
10.681064391916912
10.574253747997743
10.468511210517764
10.363826098412586
10.260187837428461
10.157585959054176
10.056010099463634
9.955449998468998
9.855895498484308
if  (Math.abs(vx) <= 0.05) {
 trace(Math.abs(vx));
}