UNİTY 3D MATERİAL RENGİ DEĞİŞTİRME
Bu Derste Her hangi Bir Tuşa Basıp Karakterimizin Material Rengini Değiştirmeyi Öğreneceksiniz...
Bu Kod Yapısını Geliştirip Kullanabilirsiniz .
Örneğin Karakteriniz Bir Canavara Çarptığında Material Rengi 1 Saniyeliğine Kırmızı Olabilir.
RENK DEĞİŞTİRME SCRİPT:
C#
using UnityEngine;
using System.Collections;
public class ExampleBehaviourScript : MonoBehaviour
{
void Update()
{
if (Input.GetKeyDown(KeyCode.R))
{
GetComponent<Renderer> ().material.color = Color.red;
}
if (Input.GetKeyDown(KeyCode.G))
{
GetComponent<Renderer>().material.color = Color.green;
}
if (Input.GetKeyDown(KeyCode.B))
{
GetComponent<Renderer>().material.color = Color.blue;
}
}
}
JS