Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
数値をプラスからマイナスに切り替える必要があるスクリプトに取り組んでおり、マイナスかプラスかによって +1 または -1 を追加します。今、私はチェックできることを知ってif vx < 0 then ... いますが、どうすれば数式でそれを行うことができますか?
if vx < 0 then ...
これは私が試したものですが、+でしかうまくいきませんでした
vx = (vx + (vx/vx)) * (-1)
あなたの方程式は近いですが、絶対値が必要です:
vx = (vx + (math.abs(vx)/vx)) * (-1)
vx = (vx + (vx < 0 and -1 or 1)) * (-1)
数学の区分関数に相当します。