Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by strudi1986 · Mar 11, 2019 at 03:09 PM · scripting problemprefabsfunctionsinventory systemscriptable object

Problems calling functions from Scriptable Objects

Hi there! I am working on an simple examining system. im pretty far right now and it works as i expected but i have one problem. if i click on an item in my inventory a prefab will instantiated with the examining object on it. i call the function on the Scriptable Object

 SlotScript.cs
 
 ........
   if (eventData.button == PointerEventData.InputButton.Right)
         {
             //UseItem();
             ExamineItem();
         }
 
     public void ExamineItem()
     {
         if (MyItem is IExaminable)
         {
             (MyItem as IExaminable).StartExamine();
         }
 
     }
 
     public void StopExamineItem()
     {
         if (MyItem is IExaminable)
         {
             (MyItem as IExaminable).StartExamine();
         }
     }

The calling of the function to examine the item works pretty well but i dont know how or where i could call the StopExamineItem() Function. ive tried several things now, but nothing works. the calliing functions are on the Scriptable Object: public class HealthHerb : Item, IUseable, IExaminable { [SerializeField] private int health;

     [SerializeField]
     private GameObject examiningObject;
 
     private GameObject gO;
     private Camera exaCam;
 
     public GameObject MyExaminingObject
     {
         get
         {
             return examiningObject;
         }
 
         set
         {
             examiningObject = value;
         }
     }
 
     //FOR TESTINGs
     public void StartExamine()
     {
         gO = Instantiate(MyExaminingObject);
         exaCam = gO.GetComponent<Camera>();
         exaCam.enabled = true;
         UIManager.MyInstance.inventory.alpha = 0;
         UIManager.MyInstance.ShowExamineUI();
     }
 
     public void StopExamine()
     {
         Debug.Log("Get in");
         UIManager.MyInstance.HideExamineUI();
         exaCam.enabled = false;
         Destroy(gO);
     }
 
     public void Use()
     {
         Remove();
     }

I know that the problem is that i dont click on this item in the inventory to call the closing but how can i do that? Or how do i do that to close or delete the prefab with keboard input?

Any idea or help?

THX

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

177 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

How to Instantiate objects that are Scriptable Objects 0 Answers

Can you compare a Gameobject to a Variable? 2 Answers

ScriptableObject reference resetted after a method is finished. 2 Answers

How to assign variables to a scene (Solved) 1 Answer

Need opinions on handling Scriptable Objects 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges