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 jaguar1226 · Feb 24, 2019 at 04:47 PM · enableactive

OnEnable() is not called when SetActive(true)

Hey! I want to make a simple jump and run game where different sets of obstacles are generated again and again so that it never Ends. I tried to do this by activating and deactivating the objects with the SetActive() method (and then changing their Position when they are activated again). The Problem is, that OnEnable() isn't called when the object is activated. Does anyone know why this happens or another way to do this? Thank you!!!

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 mimishak · Feb 24, 2019 at 05:09 PM 0
Share

Did you test it with debug.log? Try disabling the script component and enabling it as well.

1 Reply

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

Answer by Grimm9186 · Feb 24, 2019 at 05:13 PM

Since the script itself wasn't turned off OnEnable() wouldn't be called, if you really want the script to be re-enabled, deactivate it with script.enabled = false; This will also trigger the OnDisabled() function, then just reanable it after you turned the gameobject back on with script.enabled = true; This will run OnEnable() again.


Comment
Add comment · Show 3 · 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 Grimm9186 · Feb 24, 2019 at 05:23 PM 1
Share

i realize now that turning the gameobject off and on should also disable and re-enable the scripts :/. Are you sure you turning the gameobject the Script is attached too off? If so that is quite weird.

avatar image jaguar1226 · Feb 25, 2019 at 05:18 PM 0
Share

Yeah I thought the same thing. The unity documentation says that SetActive(false) turns off the script and the deactivating works(I tested it with the debug.log). But I tried out disabling and enabling the script as well and now it works :) Thank you!!!

avatar image Baschti-aus-s · Jan 12, 2021 at 07:04 PM 0
Share

Well thats not correct. GameObject.SetActive(state) will call OnEnable() and OnDisable() on every active script attached to the GameObject. See also documentation: https://docs.unity3d.com/ScriptReference/GameObject.SetActive.html

Use script EnableDisableTest on GameObject 01 in the scene:

 using UnityEngine;
 
 public class EnableDisableTest : $$anonymous$$onoBehaviour
 {
     public bool state;
     public GameObject objectToTest;
 
     private bool previousState;
 
     public void Start()
     {
         state = objectToTest.activeInHierarchy;
         previousState = state;
     }
 
     public void Update()
     {
         if (state != previousState)
         {
             objectToTest.SetActive(state);
             previousState = state;
         }
     }
 }

And script OrderOfFunctionsTest on GameObject 02 in the scene:

 using UnityEngine;
 
 public class OrderOfFunctionsTest : $$anonymous$$onoBehaviour
 {
     public void Awake()
     {
         Debug.Log("Order test Awake()");
     }
     public void OnEnable()
     {
         Debug.Log("Order test OnEnable()");
     }
     public void OnDisable()
     {
         Debug.Log("Order test OnDisable");
     }
 }

Asign GameObject02 in the inspector to objectToTest of GameObject01. If you start the game, you can use the inspector to toggle state on EnableDisableTest. GameObject02 will toggle between active/inactive and the methodes OnEnable() and OnDisable() will be called accordingly. That also works, if you put OrderOfFunctionsTest on a child GameObject of GameObject02.

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

102 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

Related Questions

Set Player 2 to use player 1's postion in world 1 Answer

May I know how to reactivate an object that deactivated? 1 Answer

How To Keep GameObjects From Enabling Again? 2 Answers

.enabled does not enabled GUItexture 1 Answer

How to init disabled canvas properly 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