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 Iroul · Jul 23, 2014 at 06:15 AM · javascriptspriteanimator2d platformeranimationstate

Changing animation when moving horizontally without flipping sprite

Hi, I have been having this problem for a few days so I decided to ask here. I am working on a 2D platformer game using Animator Controller. My character was able to move horizontally by using one sprite sheet for horizontal movement flipped over by multiplying -1 to the x scale everytime it needed to.

 private function Flip() {
     var theScale:Vector2 = smileyFace.transform.localScale;
     theScale.x *= -1;
     smileyFace.transform.localScale = theScale;
 }

This was crucial part because my character had to bounce off the wall when it hits the wall. I made it so that the character would bounce off the wall by 1) changing its target position, and 2) flip the sprite horizontally.

However, I noticed that the shading on my character looked wrong when flipped over horizontally so I decided to create separate animation set for moving left and right. So I created new sets of sprite sheets and created animation states accordingly. I took the Flip function out of the original code. Now, my character can move horizontally with correct animations.

The problem came when I was trying to bounce off the wall. My bounce would not work anymore. It would completely ignore my bounce function and just jitter around until it goes through the wall. I was trying to figure out hard to find what parameter is not being updated correctly. It was updating moving direction and its new target position but twice in a row to nullify the bounce and force itself to go through the wall.

After trying to fix my code for several hours, I have found out that my character will bounce off fine if I put the Flip function back in. Well...bounce works fine but the image is now flipped over so the animation is off. So what did I do? call Flip function twice. Now everything works as I have planned. But why do I have to flip the image to make my character bounce? This should be completely unnecessary.

 function HitWall() {
     // swap current position and target position for bouncing back
     var tempPos:SmileyPos;
     tempPos = smileyPos;
     smileyPos = targetPos;
     targetPos = tempPos;
     
     startX = ColToX(smileyPos.col);
     targetX = ColToX(targetPos.col);
     
     // updating moving time
     moveStartTime -= (1.0f - hMoveFrac) - hMoveFrac;
     hMoveFrac = 1.0f - hMoveFrac;
     
     movingRight = !movingRight;
     movingLeft = !movingLeft;
     anim.SetBool("moveRight", movingRight);
     anim.SetBool("moveLeft", movingLeft);
     
     var animationName:int;
     if (movingRight && !movingLeft) {
         animationName = Animator.StringToHash("Base Layer.move_hRight");
     }
     else if (movingLeft && !movingRight) {
         animationName = Animator.StringToHash("Base Layer.move_hLeft");
     }
     anim.Play(animationName, 0, 1.0f - anim.GetCurrentAnimatorStateInfo(0).normalizedTime);
     
     //why is this required??
     /*Flip();
     Flip();*/
 }

So here's my code for when my character hits the wall. HitWall function is called by the Character Controller from its OnCollisionEnter2D function.

alt text

Here's the Animator state of the game.

animator.png (31.9 kB)
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

2 People are following this question.

avatar image avatar image

Related Questions

How do I animate a 2D sprite? 1 Answer

How can I reference an animator in another script so that it plays the desired animation when a button is clicked? 1 Answer

accessing animation states from animator in javascript 0 Answers

Restoring animations after rescaling objects 0 Answers

How to read sprites/textures from an Animator current animation? 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