Mathf.Log10static function Log10 (f : float) : floatDescriptionReturns the base 10 logarithm of a specified number.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { void Awake() { print(Mathf.Log10(100)); } } import UnityEngine
import System.Collections class example(MonoBehaviour): def Awake(): print(Mathf.Log10(100)) |
