8wDlpd.png
8wDFp9.png
8wDEOx.png
8wDMfH.png
8wDKte.png

go run 无法在用户模式下提供网站服务,但在 ubuntu WSL 中的 root 模式下可以运行 - Windows

Eric Camescasse 2月前

87 0

我正在制作一个拖放系统,其中每次单击都会从堆栈中将 1 个项目放到鼠标上,但它会占用堆栈并留下 1 个项目,而不是相反。项目行为屏幕...

我正在制作一个拖放系统,每次单击都会从堆栈中取出 1 个项目到鼠标上,但它会占用堆栈并留下 1 个项目,而不是相反

物品行为脚本使物品跟随鼠标光标。库存管理器脚本从库存槽中添加和移除物品,并允许堆叠

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.EventSystems;
using TMPro;

public class ItemBehaviour : MonoBehaviour, IBeginDragHandler, IDragHandler, IEndDragHandler
{
    [Header("UI")]
    [SerializeField]
    private Image image;
    public TMP_Text countText;

    [HideInInspector]
    public Items item;
    [HideInInspector]
    public int count = 1;
    [HideInInspector]
    public Transform parentAfterDrag;
    private ItemBehaviour clone;

    private void Start()
    {
        InitialiseItem(item);
    }

    public void RefreshCount()
    {
        if (count > 1)
        {
            countText.text = count.ToString();
        }
        else
        {
            countText.text = "";
        }
    }

    public void InitialiseItem(Items newItem)
    {
        item = newItem;
        image.sprite = newItem.sprite;

        RefreshCount();
    }

    public void OnBeginDrag(PointerEventData eventData)
    {
        bool isShiftPressed = Input.GetKey(KeyCode.LeftShift) || Input.GetKey(KeyCode.RightShift);

        if (!isShiftPressed)
        {
            // Drag only one item
            if (count > 1)
            {
                // Create a clone of the item
                clone = Instantiate(this, transform.parent);
                clone.count = 1;
                clone.InitialiseItem(item);
                clone.RefreshCount();

                // Update the count of the original item
                count--;
                RefreshCount();
            }
        }
        else
        {
            // Drag the whole stack
            clone = this;
        }

        // Update UI
        image.raycastTarget = false;
        parentAfterDrag = transform.parent;
        transform.SetParent(transform.root);
        RefreshCount();
    }

    public void OnDrag(PointerEventData eventData)
    {
        transform.position = Input.mousePosition;
    }

    public void OnEndDrag(PointerEventData eventData)
    {
        image.raycastTarget = true;
        transform.SetParent(parentAfterDrag);

        // Handle dropping the item
        if (clone != this)
        {
            // If dragging a clone (one item), the original stack is left with updated count
            if (count <= 0)
            {
                Destroy(gameObject);
            }
        }
        else
        {
            // Otherwise, the item is left behind with updated count
            RefreshCount();
        }
    }
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class InventoryManager : MonoBehaviour
{
    public InventorySlot[] inventorySlots;
    public GameObject inventoryItemPrefab;
    [SerializeField] 
    private int maxitems;
    [SerializeField] 
    private int currentItems;

    private void Update()
    {
        UpdateCurrentItems();
    }

    public bool AddItem(Items item)
    {
        if (currentItems < maxitems)
        {
            // Check if the item can be stacked in an existing slot
            for (int i = 0; i < inventorySlots.Length; i++)
            {
                InventorySlot slot = inventorySlots[i];
                ItemBehaviour itemInSlot = slot.GetComponentInChildren<ItemBehaviour>();

                if (itemInSlot != null && itemInSlot.item == item && itemInSlot.item.stackable == true)
                {
                    itemInSlot.count++;
                    itemInSlot.RefreshCount();
                    currentItems++;
                    return true;
                }
            }

            // Check for an empty slot to place the new item
            for (int i = 0; i < inventorySlots.Length; i++)
            {
                InventorySlot slot = inventorySlots[i];
                ItemBehaviour itemInSlot = slot.GetComponentInChildren<ItemBehaviour>();

                if (itemInSlot == null)
                {
                    SpawnItem(item, slot);
                    currentItems++;
                    return true;
                }
            }

            return false;
        }
        else
        {
            Debug.Log("Storage is full");
            return false;
        }
    }

    // Spawns item in inventory
    void SpawnItem(Items item, InventorySlot slot)
    {
        GameObject newItemGO = Instantiate(inventoryItemPrefab, slot.transform);
        ItemBehaviour itemBehaviour = newItemGO.GetComponent<ItemBehaviour>();
        itemBehaviour.InitialiseItem(item);
    }

    void UpdateCurrentItems()
    {
        currentItems = 0;

        foreach (InventorySlot slot in inventorySlots)
        {
            ItemBehaviour[] itemsInSlot = slot.GetComponentsInChildren<ItemBehaviour>();
            foreach (ItemBehaviour item in itemsInSlot)
            {
                currentItems += item.count;
            }
        }
    }

    // Check if the inventory has the specified item and quantity
    public bool HasItem(Items item, int quantity)
    {
        foreach (InventorySlot slot in inventorySlots)
        {
            ItemBehaviour itemInSlot = slot.GetComponentInChildren<ItemBehaviour>();
            if (itemInSlot != null && itemInSlot.item == item && itemInSlot.count >= quantity)
            {
                return true;
            }
        }
        return false;
    }

    // Remove the specified quantity of an item from the inventory
    public void RemoveItem(Items item, int quantity)
    {
        foreach (InventorySlot slot in inventorySlots)
        {
            ItemBehaviour itemInSlot = slot.GetComponentInChildren<ItemBehaviour>();
            if (itemInSlot != null && itemInSlot.item == item)
            {
                if (itemInSlot.count > quantity)
                {
                    itemInSlot.count -= quantity;
                    itemInSlot.RefreshCount();
                    return;
                }
                else
                {
                    quantity -= itemInSlot.count;
                    Destroy(itemInSlot.gameObject);

                    if (quantity <= 0)
                    {
                        return;
                    }
                }
            }
        }
    }
}
帖子版权声明 1、本帖标题:go run 无法在用户模式下提供网站服务,但在 ubuntu WSL 中的 root 模式下可以运行 - Windows
    本站网址:http://xjnalaquan.com/
2、本网站的资源部分来源于网络,如有侵权,请联系站长进行删除处理。
3、会员发帖仅代表会员个人观点,并不代表本站赞同其观点和对其真实性负责。
4、本站一律禁止以任何方式发布或转载任何违法的相关信息,访客发现请向站长举报
5、站长邮箱:yeweds@126.com 除非注明,本帖由Eric Camescasse在本站《ubuntu》版块原创发布, 转载请注明出处!
最新回复 (0)
  • 我一直想用 snap 安装 pycham,但似乎不起作用。[sudo] 用户密码:错误:未找到 snap \'pycharm-professional\' 知道可能出了什么问题吗?我试过

    我一直尝试使用 snap 安装 pycham 但似乎不起作用。

    [sudo] password for user: 
    error: snap "pycharm-professional" not found
    

    知道可能哪里出了问题吗?

    我确实尝试重新安装 snap,但是没有成功,即使全新安装 Ubuntu 似乎也无济于事!

返回
作者最近主题: