このページを含むバージョン:
このページを含まないバージョン:
指定した数の底が 10 の対数を返します。
using UnityEngine; using System.Collections;public class ExampleClass : MonoBehaviour { void Example() { print(Mathf.Log10(100)); } }