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 andrew_cs · Jan 17, 2014 at 06:59 PM · 2drotationmovementmath

2D Simulated Sword Swing - Sword Floating Away

Hello, I'm attempting to make one of my enemies swing a sword. This is in 2D. I'm doing this by saving the end point of the hilt of the sword before the rotation, then rotating the sword, then restoring the hilt position. Currently the sword rotation works, and the sword swings down and then up correctly.

The problem is that each time the enemy swings the sword, the sword starts to float away from the enemy. It seems that it is floating away to the positive x and negative y. Each sword swing seems to increase the distance very slightly, but after a while it becomes very noticeable.

Can anyone tell me why this is happening or how to fix it. I'm also open to better alternative ways to achieve this. Thank you in advance.

 void Update(){
     ....
     // See if should swing sword, has to be close to target
     if (!swinging && Mathf.Abs (target.position.x - transform.position.x) < 1.0F)
         swinging = true;

     if (swinging)
         handleSwing();
     ....
 }

 public void handleSwing(){
     float zAngle = swordTransform.localRotation.eulerAngles.z; // Angle before rotating

     // Check if withing angle limit of swing
     if ((zAngle > 320 && zAngle <= 360) || (zAngle >= 0 && zAngle <= 30))
         swinging = true;
     else { // Done with swing, change swing direction
         swingingDown = !swingingDown;
         swinging = false;
     }

     // Save y point for restoring position later
     float originalY = (zAngle > 320 && zAngle <= 360) ? swordRenderer.bounds.min.y : swordRenderer.bounds.max.y;
     Vector3 rotVec = swordTransform.localRotation.eulerAngles; // Current rotation
     rotVec.z += (swingingDown) ? 1 : -1; // Rotate depending on swing direction

     if(facingRight){ // Boss is facing right
         float originalX = swordRenderer.bounds.min.x; // Want to grab left most point

         swordTransform.localRotation = Quaternion.Euler (rotVec); // Change rotation
         float newX = swordRenderer.bounds.min.x; // Grab new left most point
         // Grab new y point
         float newY = (zAngle > 320 && zAngle <= 360) ? swordRenderer.bounds.min.y : swordRenderer.bounds.max.y;
         float xDif = newX - originalX;
         float yDif = newY - originalY;
         
         swordTransform.Translate(new Vector3(-xDif, -yDif, 0f)); // Restore the position
     }
     else{ // Boss is facing left
         float originalX = swordRenderer.bounds.max.x; // Want to grab right most point

         swordTransform.localRotation = Quaternion.Euler (rotVec); // Change rotation
         float newX = swordRenderer.bounds.max.x; // Grab new right most point
         // Grab new y point
         float newY = (zAngle > 320 && zAngle <= 360) ? swordRenderer.bounds.min.y : swordRenderer.bounds.max.y;
         float xDif = newX - originalX;
         float yDif = newY - originalY;
         
         swordTransform.Translate(new Vector3(-xDif, -yDif, 0f)); // Restore the position
     }
 }
Comment
Add comment
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

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

18 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

Related Questions

Rotate/Flip Image in Unity 2d using Virtual Joystick 1 Answer

Unity 2D: How can i get my sprite to rotate to the direction I am going? 1 Answer

Player rotation affecting Top Down 2D Movement 1 Answer

2D Zig-zag movement and rotation 1 Answer

Locking move direction and rotation in JavaScript 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