Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 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 BSVALVE · Apr 28, 2011 at 02:58 PM · pauseenableactive

May I know how to reactivate an object that deactivated?

Hi All Unities,

What could I do to disable a specific button in paused event? or How could I reactivate an object? I been trying different methods but please help me if you could thanks.

Regards,

function PauseGame() { var newTarget = GameObject.FindWithTag("Player").transform; var newTarget2 = GameObject.FindWithTag("Patriot").transform; newTarget.active = false; newTarget2.active = false; ButtonNoice(); savedTimeScale = Time.timeScale; Time.timeScale = 0; AudioListener.pause = true; if (pauseFilter) pauseFilter.enabled = false; currentPage = Page.Main; }

function UnPauseGame() {
var newTarget = GameObject.Find("Ship"); var newTarget2 = GameObject.Find("Patriot"); ButtonNoice(); Time.timeScale = savedTimeScale; AudioListener.pause = false; if (pauseFilter) pauseFilter.enabled = true; currentPage = Page.None;
if (IsBeginning() && start != null) { start.active = true;

     newTarget.SetActiveRecursively(true);
     newTarget2.SetActiveRecursively(true);
 }   

}

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by sneftel · Apr 28, 2011 at 09:16 PM

GameObject.FindWithTag() won't return your Player or Patriot when they're not active. Make newTarget and newTarget2 class variables instead of local variables (and maybe give them better names). In PauseGame(), set them based on FindWithTag(), then disable them; in UnPauseGame, reenable them based on their prior values rather than trying to find them again.

Comment
Add comment · Show 4 · 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 BSVALVE · Apr 28, 2011 at 09:36 PM 0
Share

Err ya, the PauseGame() works but the UnpauseGame() aren't... but what are the priority value should it be? This script from the unify wiki.

avatar image sneftel · Apr 28, 2011 at 10:21 PM 0
Share

I don't know what "what are the priority value should it be?" means.

avatar image BSVALVE · Apr 29, 2011 at 12:01 PM 0
Share

I just don't understand "based on their prior values rather than trying to find them" means so I wrote that hope this understandable for you.

avatar image sneftel · Apr 29, 2011 at 05:36 PM 0
Share

In other words, in UnPause you won't need to call Find(), because you will already have found the objects in PauseGame and kept them in the variables. Of course, in order for that to work, newTarget and newTarget2 need to not be local variables, so that their value stays around after PauseGame() is over.

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

No one has followed this question yet.

Related Questions

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

How To Keep GameObjects From Enabling Again? 2 Answers

Confused about enable 1 Answer

Disable a script from another script 2 Answers

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