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 Roeliefantje · Jan 21, 2018 at 03:04 PM · delayif-statement

Keeps running else statement even though it shouldn't

So I wrote some code to use as a Log In system in my 2D game. But whenever the button is clicked upon, the else statement that shouldn't be triggered triggers. I later found out it was because the strings the if statement compared weren't filled in the first time when clicking. So I added some sort of loop. This doesn't work for some reason and I have no idea why. If anyone knows how I could fix this please tell me. Thanks in advance.

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 using UnityEngine.UI;
 using UnityEngine.SceneManagement;

 public class Login : MonoBehaviour
 {

 public string databaseUsername;
 public string databasePassword;
 public Button Continue;
 public InputField Username;
 public InputField Password;
 public string inputPassword;

 private int Teller = 0;

 string LoginUrl = "localhost:8080/Logingegevens.php";

 // Use this for initialization
 void Start()
 {
     //functie oproepen als er op aangegeven knop gedrukt wordt.
     Button btn = Continue.GetComponent<Button>();
     btn.onClick.AddListener(TaskOnClick);
 }

 public IEnumerator Loggingin(string Username)
 {
     WWWForm form = new WWWForm();
     form.AddField("inlogusernamePost", Username);
     WWW www = new WWW(LoginUrl, form);
     yield return www;
     databasePassword = www.text;
 }

 // functie van button 
 void TaskOnClick()
 {
     StartCoroutine(Loggingin(Username.text));
 
     if (Password.text == databasePassword)
     {   
         SceneManager.LoadScene("PROTOTYPE");
     } else {
         if (Teller == 0)
         {
             Teller++;
             TaskOnClick();
         } else
         {
             SceneManager.LoadScene("Log in");
         }
     }
 }
 }



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 Bunny83 · Jan 21, 2018 at 03:44 PM

Uhm your coroutine runs seperately from the calling method. So this line

 if (Password.text == databasePassword)

is executed way before you reach this line in your coroutine:

 databasePassword = www.text;

Therefore your "databasePassword" variable won't be initialized. This whole concept doesn't make much sense. You transmit the password that is stored online as plaintext to anyone who accesses your "login URL". Any login online process works the other way round. You send the password the user enters to your server and verify the password on the server.

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 Roeliefantje · Jan 21, 2018 at 04:37 PM 0
Share

Any way to make sure the coroutine finishes before the if statement gets executed? The concept may not make a lot of sense but I understand it this way.

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

74 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

Related Questions

Player keeps moving after key up 1 Answer

Fix sound delay 6 Answers

Preloading all scenes to remove scene switch delay 1 Answer

Scene Takes Longer to Close the Longer it's Open 0 Answers

Delay Application.LoadLevel 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