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 Ownedbycow · Mar 01, 2018 at 06:19 PM · 2dcollider2dcomponent2d-physicsspringjoint

SpringJoint2D behaving oddly when the gameObject that it is connected to collides with another gameObject.

I have a simple script to test out the SpringJoint2D. If the gameObject is touching another, it won't adjust the distance when using the script that I am using, but the debug.log still shows up fine.

Also, it does show the distance changing in the inspector and scene view, but the gameObject will not move. It acts like it is stuck unless I disable then enable the spring joint and use my script to change the distance within about half a second.

If I manually change the distance by using the inspector, it will cause the gameObject to react like it should. When the gameObject is not connected to another, the script works fine and it will move when I change the distance.

The two objects had 2D Box colliders. I tried changed the main gameObject to a circle collider and it did help decrease the frequency of it getting stuck, but if I just wait for it to stop moving, it will be stuck again.

What might be causing this?

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class changeJointDistance : MonoBehaviour {
 
     public SpringJoint2D springJoint;
 
     void Start () { }
     
     void Update () {
 
         var d = Input.GetAxis("Mouse ScrollWheel");
         if (d > 0f)
         {
             Debug.Log("Scrolled UP");
             // scroll up
             springJoint.distance -= .25f;
         }
         else if (d < 0f)
         {
             Debug.Log("Scrolled Down");
             // scroll down
             springJoint.distance += .25f;
         }
     }
 }
 

Comment
Add comment · Show 2
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 Ownedbycow · Mar 02, 2018 at 04:09 PM 0
Share

It does not matter if the springjoint is shortened to .05 which is as small as it will go or if it is longer. It will still get stuck.

avatar image Ownedbycow · Mar 02, 2018 at 04:46 PM 0
Share

Something that I just noticed is that the box collider is brighter when it is not stuck then when it is stuck it becomes darker in the scene view. Does this mean that unity is disabling something to preserve resources?

1 Reply

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

Answer by Ownedbycow · Mar 02, 2018 at 04:54 PM

I found the issue. The problem is that the rigidbody 2d is going to sleep after being idle for about half a second. I set it to always awake and it fixed the issue. If it is set to always awake, will this greatly affect the games performance?

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

155 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 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

2D Animation does not start 1 Answer

Scaling colliders up and down over time 1 Answer

Moving colliders that are part of a composite collider 1 Answer

Polygon Collider 2D: prevent automatic generation 2 Answers

Collider lets object through 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