コード例 #1
0
ファイル: Thruster.cs プロジェクト: stephen-karpinskyj/record
    void FixedUpdate()
    {
        throttle = Mathf.Lerp(throttle, targetThrottle, Time.fixedDeltaTime * lerpSpeed);
        entity.AddForce(-transform.up * force * throttle);
        entity.AddTorque(torque * throttle);

        if (ps)
        {
            var main = ps.main;
            main.startSize = Mathf.Lerp(particleSizeRange.x, particleSizeRange.y, throttle);
        }
    }