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 /
  • Help Room /
avatar image
0
Question by KnightRiderGuy · Dec 02, 2015 at 12:25 PM · c#toggletimer countdowntoggle buttontimers

Latching Toggle Button Help

I have a toggle button that when pressed keeps its pressed on state until pressed again. I'm trying to use this toggle button to set a device to be able to turn on a device when a countdown time finishes.

How can I do this?

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

2 Replies

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

Answer by KnightRiderGuy · Dec 02, 2015 at 01:57 PM

I found what I had to do was to first create a bool for each toggle switch like this:

 bool dev01State = false;
     bool dev02State = false;
     bool dev03State = false;

And then for my toggle buttons do this:

 //Device One Toggle
     public void ToogleDeviceOne() {
         //Device Set to go off with timer Here
         dev01State = !dev01State;
     }

I repeat that last code for each toggle button. And then the part that was driving me nuts at the end of my timer script I did this:

 IEnumerator  Timing()
     {
         if (timer > 0) {
             //var minsDisplay : String = parseInt( timer / 60 ).ToString();
             minsDisplay = System.Convert.ToInt32( timer / 60 ).ToString();
             
             //var secsDisplay : String = parseInt( timer ).ToString();
             secsDisplay = System.Convert.ToInt32( timer ).ToString();
             
             if ( (timer - ( System.Convert.ToInt32(minsDisplay) * 60)) > 10 ) {
                 secsDisplay = System.Convert.ToInt32( timer - ( System.Convert.ToInt32(minsDisplay) * 60) ).ToString();
             }
             else {
                 secsDisplay = "0" + System.Convert.ToInt32( timer - ( System.Convert.ToInt32(minsDisplay) * 60) ).ToString();
             }
             
             //displayText.text = minsDisplay + " : " + secsDisplay;
         }
         //Timer Reaches End We Can Do Something Here
         else {
             timer += oldTimer;
             GetComponent<AudioSource>().PlayOneShot(Alarm);//Plays Alarm Sound
             isFinishedTimer = true;//Sets Inspector Value to true or false based on what is set here
             yield return new WaitForSeconds(5.8f);//Wait Time Setting
             //Do Something if Desired
             
             //if (GetComponent.<AudioSource>().isPlaying) return; // don't play a new sound while the last hasn't finished
             GetComponent<AudioSource>().clip = voices[Random.Range(0,voices.Length)];
             GetComponent<AudioSource>().Play();
 
             
             yield return new WaitForSeconds(0.8f);//Wait Time Setting
             //Do Something if Desired
             if (dev01State == true){
             Sending.sendRed2 ();
             }
             if (dev02State == true){
                 Sending.sendRed ();
             }
             if (dev03State == true){
                 Sending.sendGreen2 ();
             }
             //Sending.sendRed ();
             Debug.Log ("Timer Ended");
         }
         displayText.text = minsDisplay + " : " + secsDisplay;
     }

Drives me nuts it took me all day to figure that out so I'll share it here just in case there is some other poor bugger like me trying to do the same thing ;)

Comment
Add comment · 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
0

Answer by itisieric · Apr 13, 2020 at 12:57 AM

I don't know if this helps but this is what I did

if ((Input.GetKeyDown(KeyCode.X)) == true) { if (world == false) { world = true; } else { world = false; }

         }
Comment
Add comment · 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

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

35 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

Related Questions

Toggle UI Text With UI Toggle Button 1 Answer

Toggle Button For Timed Device When Timer Runs Out 1 Answer

Need help understanding toggle code. 0 Answers

Make a button toggle between highlight and default graphics onClick? 1 Answer

toggle button blinks 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