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 BobbleHead · Nov 04, 2013 at 07:46 PM · iostouchphase

Decting iOS touch input in Fixed Update

I was detecting touches of the screen in the Update function, however this on iPhone 4 seemed to cause some kind of delays. However, when I moved the code over to the FixedUpdate, it stopped working as expected (multiple inputs detected in jump)

 for (var touch : Touch in Input.touches) {
                 if (touch.phase != TouchPhase.Ended && touch.phase != TouchPhase.Canceled){
                        fingerCount++;
                    }
                     if (touch.phase == TouchPhase.Began && jumpbox.Contains(touch.position)){
                         jumpKeyPressed = true;
                     }

I guess, I want to know whether I should detect screen input in Update, or Fixed Update?

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 ozturkcompany · Nov 04, 2013 at 07:58 PM 0
Share

Fixed update is used on Physics calculation only and it has a fixed update which wilk make the sim more stable. So you should do it within update. What i dont understand is even if user has a one finger on the screen and just holding his finger. The finger count will increase once per frame which i dont understand why you did sth like that

1 Reply

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

Answer by Huacanacha · Nov 04, 2013 at 08:18 PM

According to the Unity script reference: http://docs.unity3d.com/Documentation/ScriptReference/Input.html

Touch input is only updated once per frame. The key quote is: "You can access data on the status of each finger touching screen during the last frame".

From my own experience I believe this is the case, although I would love to have more control over the collection of touch input data for my own game.

So the answer is: Detect screen input in Update() :)

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 BobbleHead · Nov 04, 2013 at 08:31 PM 0
Share

Thing is, I have stripped my game now back to it's core, without any fluff and I am still detecting delay in the input. However, or the latest devices this isn't an issue. Odd

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

17 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

Related Questions

The name 'Joystick' does not denote a valid type ('not found') 2 Answers

How do I change the texture of a gameobject only while a touch is on it on iOS? 1 Answer

Input.touchCount returning wrong number 0 Answers

iOS TouchPhase.Began Detected Multiple Times 1 Answer

Touch count & Raycasting on mobile 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