-
유니티 무기 바꾸기 무기 교체 꿀팁카테고리 없음 2021. 8. 25. 11:41반응형
ManagerWeaponChange.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; public class ManagerWeaponChange : MonoBehaviour { private ManagerWeapon m_Weapon; public Transform pivotR; private int indexPreviousWeapon; // Start is called before the first frame update void Start() { m_Weapon = GameObject.Find("ManagerWeapon").GetComponent<ManagerWeapon>(); GameObject tempDefaultWeapon = m_Weapon.weapons[0]; Instantiate(tempDefaultWeapon, pivotR); indexPreviousWeapon = 0; } public void ChangeWeapon(int weaponIndex) { if(weaponIndex != indexPreviousWeapon) { Destroy(pivotR.GetChild(0).gameObject); GameObject tempWeapon = m_Weapon.weapons[weaponIndex]; Instantiate(tempWeapon, pivotR); indexPreviousWeapon = weaponIndex; } } }
ManagerWeapon.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; public class ManagerWeapon : MonoBehaviour { public GameObject[] weapons; // Start is called before the first frame update void Start() { } }
ManagerUI.cs
using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; public class ManagerUI : MonoBehaviour { private ManagerWeaponChange managerWeaponChange; // Start is called before the first frame update void Start() { managerWeaponChange = GameObject.FindGameObjectWithTag("Player").GetComponent<ManagerWeaponChange>(); } public void ButtonWeaponChange() { GameObject tempBtn = EventSystem.current.currentSelectedGameObject; int tempBtnIndex = tempBtn.transform.GetSiblingIndex(); managerWeaponChange.ChangeWeapon(tempBtnIndex); } }
반응형