UNİTY 3D OBJE YOK ETME
Bu Derste Objenin Nasıl yok Olacağını Öğreneceksiniz.
Bu Sistem Bir Oyun Geliştirirken Çok İşinize Yarayacak Bu Sistemi Kafanızın Bir Köşesine Kazıyın...
DESTROY BASİC:
C#
using UnityEngine;
using System.Collections;
public class DestroyBasic : MonoBehaviour
{
void Update ()
{
if(Input.GetKey(KeyCode.Space))
{
Destroy(gameObject);
}
}
}
JS
DESTROY OTHER:
C#
using UnityEngine;
using System.Collections;
public class DestroyOther : MonoBehaviour
{
public GameObject other;
void Update ()
{
if(Input.GetKey(KeyCode.Space))
{
Destroy(other);
}
}
}
JS
#pragma strict
public var other : GameObject;
function Update ()
{
if(Input.GetKey(KeyCode.Space))
{
Destroy(other);
}
}
DESTROY COMPONENT:
C#
using UnityEngine;
using System.Collections;
public class DestroyComponent : MonoBehaviour
{
void Update ()
{
if(Input.GetKey(KeyCode.Space))
{
Destroy(GetComponent<MeshRenderer>());
}
}
}
JS