Math.Pow(i, 3)、Mathf.Pow(i, 3)、i * i * iの速度比較をしたので結果を残しておきます。 [ 環境 ] Unity 2021.2.19.f1 [ 比較結果 ] Math.Pow(i, 3) 26 ms Mathf.Pow(i, 3) 55 ms i * i * i 0 ms PowInt(i, 3) 3 ms [ スクリプト ] using System.Collections; using System.Collections.Generic; using UnityEngine; usi…