言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Font.material

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public var material: Material;
public Material material;
public material as Material

Description

フォントの表示に使用されるマテリアルを返す

	// Swap 3D Text font color each second
	// Add this script to a text mesh object
	private var flag : boolean = false;
	private var rate : float = 1;
	private var t : TextMesh;
	function Update() {
		t = transform.GetComponent(TextMesh);
		if(Time.time > rate) {
			if(flag){
				t.font.material.color = Color.yellow;
				flag = false;
			} else {
				t.font.material.color = Color.red;
				flag = true;
			}
			rate += 1;
		}
		t.text = "This is a 3D text changing colors!";
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    private bool flag = false;
    private float rate = 1;
    private TextMesh t;
    void Update() {
        t = transform.GetComponent<TextMesh>();
        if (Time.time > rate) {
            if (flag) {
                t.font.material.color = Color.yellow;
                flag = false;
            } else {
                t.font.material.color = Color.red;
                flag = true;
            }
            rate += 1;
        }
        t.text = "This is a 3D text changing colors!";
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	private flag as bool = false

	private rate as float = 1

	private t as TextMesh

	def Update() as void:
		t = transform.GetComponent[of TextMesh]()
		if Time.time > rate:
			if flag:
				t.font.material.color = Color.yellow
				flag = false
			else:
				t.font.material.color = Color.red
				flag = true
			rate += 1
		t.text = 'This is a 3D text changing colors!'