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
1
Question by Nihaar123 · Oct 30, 2015 at 05:28 AM · stuckimpactpausing

Why could the game pause when the player is taking a pickup?

It cannot collect a pickup. It pauses the game on impact, and then goes right through after resuming.

Here is my player control program to make the player collect pickups:

using UnityEngine; using System.Collections;

public class PlayerController : MonoBehaviour {

 public float speed;

 private Rigidbody rb;

 void Start ()
 {
     rb = GetComponent<Rigidbody>();
 }

 void FixedUpdate ()
 {
     float moveHorizontal = Input.GetAxis ("Horizontal");
     float moveVertical = Input.GetAxis ("Vertical");

     Vector3 movement = new Vector3 (moveHorizontal, 0.0f, moveVertical);

     rb.AddForce (movement * speed);
 }

 void OnTriggerEnter(Collider other) 
 {
     if (other.gameObject.CompareTag ("Pick Up"))
     {
         other.gameObject.SetActive (false);
     }
 }

}

Comment
Add comment · Show 3
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 whogas · Oct 31, 2015 at 03:33 AM 0
Share

Do you have your pickup's rigidbody component set as "Is Trigger"?

$$anonymous$$y first guess is that it isn't set as a trigger and your player is stopping when it first runs into the pickup and eventually pushes its way past the pickup and this looks like a "pause".

avatar image ElDo · Oct 31, 2015 at 09:11 AM 1
Share

if your game pauses there should be an error printed into the console. Would be good to know that error and from which line in which script it is caused.

avatar image Statement ElDo · Oct 31, 2015 at 04:56 PM 0
Share

Yes, this should be the first stop on where to look.

If nothing shows up in the console but the game pauses the editor, you could see if there are any scripts that call Debug.Break. For example if there was a script on the item that was "picked up" (disabled) that during OnDisable called that...

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

34 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

Related Questions

Charcter gets Stuck on Meshes 0 Answers

Game frozen with multiple prefabs instatiated. 0 Answers

Instantiate bullet Impact Effect on cube , rotation problem 1 Answer

AnimatorOverrideController not work on android? 0 Answers

Unity thinks I'm holding up and left on a joystick 3 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