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 koreawissen · Aug 23, 2019 at 01:48 PM · touch controlsrespawning

Player respawning after geting two touches

I though my script was going to actually work but it's not... (newbie for coding c#)

using System.Collections; using System.Collections.Generic; using UnityEngine;

public class ReSpawn : MonoBehaviour { private Vector3 spawn;

 // Start is called before the first frame update
 void Start()
 {
     spawn = transform.position;
 }

 void Update()
 {

     if (transform.position.y < -2)
     {
         Die();
     }
 }

 void Die()

{ if (Input.touchCount > 0) { Touch touch = Input.GetTouch(1); transform.position = spawn; }

}

}

@Bunny83 @Eric5h5 @robertbu @aldonaletto @tanoshimi @duck @whydoidoit @fafase @clunk47 @Statement @Kiwasi @Sebastian 2 @AT-Brackeys

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 GubaLord · Aug 23, 2019 at 09:12 PM 0
Share

You should clarify a little bit what you want to achieve, and how you want your code to work. I'm not much into this touching thing, but I assume your code works like this: 1. At the start you set the position of the object that has the ReSpawn script attached. 2. In Update you check every frame, if the mentioned object is lover on the y axis then -2. 3. If it is, then the Die() method runs, and checks if there is at least one touch happened. If the answer is true, then you save the second Touch of a double tap (?$$anonymous$$aybe I'm wrong, as I said, I'm not much into this stuff), I think for later use. And in the end you set it's position to the spawn point.

Check if you attached this script to the GameObject you want to move (I assume this is the player). If you want to respawn the player after it gets two touches, then simply make an int variable, set it to 0 at the start, then increase it if there is touch in update, and then check if it is higher than 1. Do not forget to reset it at respawn.

 public class ReSpawn : $$anonymous$$onoBehaviour 
 { 
       private Vector3 spawn; //I don' know if you set it's value somewhere. You should.
      private int touches;
 
      void Start()
      {
          spawn = transform.position;
          touches = 0;
      }
 
      void Update()
      {
          if (Input.touchCount > 0)
          {
              touches++;
              if(touches >= 2)
                  Die();
          }
      }
 
       void Die()
       { 
             if (Input.touchCount > 0) 
             {
                 transform.position = spawn;
                 touches = 0;
             }
       }
 }

0 Replies

· Add your reply
  • Sort: 

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

109 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

Related Questions

Moving an object forward, killing the object and respawning a new one. 1 Answer

multiplayer die and respawn 0 Answers

When backing out of Game on Android(h/w home button), and returns to play.. touch controls no longer work?(solved) 1 Answer

ScrollRect and Buttons do not communicate. 1 Answer

touch of the controls 0 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