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 calender68 · Apr 18, 2019 at 07:02 PM · instantiatebooleaninstantiate prefabinstantiationbooleans

How to instantiate once when boolean changes

Hello! I'm new to scripting and I have a quick question: In my game, the opponent can turn invisible by looking at the boolean: "isStealthed". What I want is when the opponent turns invisible, it instantiates a gameobject once. And when it turns back to visible, it instantiates a gameobject again.

I have tried using a private boolean "instantiatedParticle" to make it play only once. But when I try it, it instantiates once and then it just stops working. Any help would be appreciated! Thanks! :)

     private void CheckOpponentStealth()
     {
         SkinnedMeshRenderer meshRenderer = GetComponentInChildren<SkinnedMeshRenderer>();
         if (IsStealthed)
         {
             if (meshRenderer != null)
             {
                 meshRenderer.enabled = false; //this line makes the opponent invisible
                 if(!instantiatedParticle)
                 {
                     GameObject player = PhotonView.Instantiate(stealthParticle, transform.position, transform.rotation);
                     instantiatedParticle = true;
                 }
             }
         }
         else
         {
             if (meshRenderer != null)
             {
                 meshRenderer.enabled = true;
                 meshRenderer.material =  standardMaterial;
 //this makes the opponent visible
             }
         }
Comment
Add comment · Show 1
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
avatar image KevRev · Apr 18, 2019 at 09:11 PM 0
Share

Rather than checking if something is instantiated, if just use a couple of flags.

Private bool s$$anonymous$$lth, enterS$$anonymous$$lthTriggered, exitS$$anonymous$$lthTriggered;

Then you can build loops like this:

 If (!s$$anonymous$$lth && !enterS$$anonymous$$lthTriggered && [looked at object])
 {
   enterS$$anonymous$$lthTriggered=true;
   exitS$$anonymous$$lthTriggered=false;
   s$$anonymous$$lth=true;
   [Perform s$$anonymous$$lth activation]
 }
 
 If (s$$anonymous$$lth && !exitS$$anonymous$$lthTriggered && [looked at object])
 {
   exitS$$anonymous$$lthTriggered=true;
   Interstellar triggered=false;
   s$$anonymous$$lth=false;
   [Perform s$$anonymous$$lth deactivation]
 }

And so on...

Hope that helps.

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by DZeb · Apr 18, 2019 at 09:34 PM

You have to reset your instantiatedParticle variable back to false at some point, otherwise it will never be able to get inside the if statement again. If the CheckOpponentStealth() is executed often (e.g. Inside an update), this should fix it:

          else
          {
              if (meshRenderer != null)
              {
                  meshRenderer.enabled = true;
                  meshRenderer.material =  standardMaterial;
  //this makes the opponent visible
                  instantiatedParticle = false;
              }
          }

Otherwise you need to "instantiatedParticle = false;" at the function that changes your IsStealthed.

Comment
Add comment · Show 1 · Share
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
avatar image calender68 · Apr 18, 2019 at 10:01 PM 0
Share

Thanks! I feel really stupid.

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

130 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

Related Questions

Instantiated Bullets Not Picking Up Correct Position/Rotation 2 Answers

Instantiating enemies in spawn points not working on Android Build 0 Answers

Why is it important to create an empty gameobject for my prefabs? 0 Answers

Multiple Buildings Placement 1 Answer

[SOLVED] How can I check what was the last instantiated object? 2 Answers


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