ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 유니티 무기 바꾸기 무기 교체 꿀팁
    카테고리 없음 2021. 8. 25. 11:41
    반응형

     

    https://youtu.be/Q2hV_J7ziuk

     

    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);
    
    
    
    
        }
    
        
    }
    반응형
Designed by Tistory.