Returns the base 10 logarithm of a specified number.
// logarithm of 100 in base 10// Prints 2print(Mathf.Log10(100));
using UnityEngine;using System.Collections;public class example : MonoBehaviour { void Example() { print(Mathf.Log10(100)); }}
import UnityEngineimport System.Collectionsclass example(MonoBehaviour): def Example(): print(Mathf.Log10(100))