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 spunktrumpet · Jul 17, 2014 at 12:31 PM · rigidbodycollider

Prevent colliders intersecting.

I've got a cube with a collider and rigid body attached that follows the mouse position around the screen so that the centre of the cube is where the mouse position is. This means that if I move the mouse onto the side of another object, half of the cube is inside the other object. I've tried playing around with rigid body settings however I can't stop the cube following the mouse to intersect with other objects. Any ideas?

Forgot to mention, when I do use a rigid body with gravity on, when the cube hits another object it just flies off in a different direction, even after playing with all the rigid body settings.

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 HarshadK · Jul 17, 2014 at 12:34 PM 0
Share

Are you moving your cube using transform.Translate?

avatar image spunktrumpet · Jul 17, 2014 at 12:49 PM 0
Share

I was originally until I realised that might be the problem, I've got it set as a child object to an empty game object that uses transform.position to set it's position to the mouse position.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Saad_Khawaja · Jul 17, 2014 at 12:54 PM

If you want it to collide, you can not use Transform.position or Transform.Translate because that means you are teleporting the object to that position.

You need to use CharacterController.Move or .SimpleMove, or use Rigidbody.AddForce, Rigidbody.Moveposition to make sure that an object collides with the other.


Code Snippet: Add Rigidbody to your cube and then attach the following script:

 using UnityEngine;
 using System.Collections;
 
 public class MoveWithMouse : MonoBehaviour {
 
 
 
     // Use this for initialization
     void Start () {
     
     }
     
     // Update is called once per frame
     void Update () {
     
 
         Vector3 v3 = Input.mousePosition;
         v3.z = 10.0f;
         v3 = Camera.main.ScreenToWorldPoint(v3);
 
         this.gameObject.rigidbody.MovePosition(v3);
     
     }
 
 
 
 }

Comment
Add comment · Show 2 · 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 spunktrumpet · Jul 17, 2014 at 01:09 PM 0
Share

Ok but how would I do that if I'm trying to follow the mouse position seeing as the only way I know where the mouse is, is by a set of points.

avatar image Saad_Khawaja · Jul 17, 2014 at 02:48 PM 0
Share

rigidbody.$$anonymous$$ovePosition does exactly what you want. Please check the code above now.

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

22 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

Related Questions

Collider not stoping the object second time 1 Answer

Advice for Intersecting Colliders 0 Answers

Sprites doens't collide properly or bypass each other 0 Answers

How Do I Create Elastic Ropes For a Wrestling Ring? 1 Answer

A node in a childnode? 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