public static float Log10 (float f);

Descripción

Devuelve el logaritmo en base 10 de un número especificado.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { // logarithm of 100 in base 10 // Prints 2 print(Mathf.Log10(100)); } }