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 madsgenefke · Mar 27, 2018 at 12:11 PM · rotationrigidbody2dphysics2drotate object

Arm passing through objects (Rotation - Rigidbody2D)

Hi. I have made a small game where you are supposed to move the Player with a Pickaxe, but my rotation on the arm and Pickaxe is passing through the wall (The Player is doing fine - I guess its because of the Rigidbody2D)

The problem is if I add a rigidbody2D to the Arm object it behaves on its own and is not a part of the Player (affected by gravity and shit etc.)

Here is a video of the problem link text

Here are pictures of Player01 alt text

And a picture of the Arm property alt text

I feel like I have tried everything, but I don't know how to achieve proper collision with the Pickaxe and arm due to them not being able to have a Rigidbody2D

The code of the Arm Rotation

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
  
 public class ArmRotation01 : MonoBehaviour {
  
     float eulerMinRot = -70f;
     float eulerMaxRot = 70f;
     Vector3 currentEuler;
  
     float rotationSpeed = 80f;
     float rotation;
     float myRotation;
     bool facingRight;
  
     PlayerController01 playerController01Script;
  
     private void Awake()
     {
         playerController01Script = GameObject.FindObjectOfType<PlayerController01>();
     }
  
     // Update is called once per frame
     void Update () {
  
         rotation = Mathf.Clamp(rotation, eulerMinRot, eulerMaxRot);
  
         if(Input.GetKey(KeyCode.W))
         {
             rotation += rotationSpeed * Time.deltaTime;
         }
  
         if(Input.GetKey(KeyCode.S))
         {
             rotation -= rotationSpeed * Time.deltaTime;
         }
  
         transform.rotation = Quaternion.Euler(new Vector3(currentEuler.x, currentEuler.y, rotation));
     }
  
     private void LateUpdate()
     {
         //If the player is not facing right i would like to reverse the rotation so the that the arm and pickaxe doesnt go from + rotation on the z axis to - rotation on the z axis
         if(playerController01Script.facingRight == false)
         transform.rotation = Quaternion.Euler(new Vector3(currentEuler.x, currentEuler.y, -rotation));
     }
 }


imga1.png (362.8 kB)
imag2.png (361.2 kB)
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 TanselAltinel · May 09, 2018 at 01:19 PM 0
Share

Did you check 2D joints?

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

How to keep the velocity of a rigidbody2d while changing its direction according to rotation? 1 Answer

setting transform physics2d issue 0 Answers

2D rigidbody velocity relative to rotation? 0 Answers

Rigidbody2d physic movement on 2d terrain. 0 Answers

In unity 2D c# how to rotate an object like geometry dash? 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