ボス戦専用のフィールドを作り込むその1
ボス登場の仕掛け
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BossAppear : MonoBehaviour
{
public GameObject boss;
private void OnTriggerEnter(Collider other)
{
if(other.CompareTag("Player"))
{
boss.SetActive(true);
this.gameObject.SetActive(false);
}
}
}
【2019版】X_Mission(基礎/全51回)
他のコースを見るボス登場の仕掛け
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BossAppear : MonoBehaviour
{
public GameObject boss;
private void OnTriggerEnter(Collider other)
{
if(other.CompareTag("Player"))
{
boss.SetActive(true);
this.gameObject.SetActive(false);
}
}
}
ボス戦専用のフィールドを作り込むその1