WorldItemContainer.cs 376 B

123456789101112131415161718
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using Sirenix.OdinInspector;
  5. namespace KairoEngine.Inventory
  6. {
  7. public class WorldItemContainer : MonoBehaviour
  8. {
  9. public ItemContainer itemContainer;
  10. public MeshRenderer meshRenderer;
  11. void Start()
  12. {
  13. transform.parent = null;
  14. }
  15. }
  16. }