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 /
  • Help Room /
avatar image
0
Question by Creative Inventory · Dec 12, 2015 at 11:21 AM · animatorblend treethanks

2D blend tree Idle problem

Firstly I created a 4 directions blend tree (Left, Right, Up and Down).

Next I create a click to mouse script and attached it to my player.

Then I change my script a bit to make sure my player goes it all 4 directions, this is my script now:

      private Animator anim;
    public float speed = 15f;
    private Vector3 target;

 
 void Start () {
     target = transform.position;
     anim = GetComponent<Animator> ();
 }
 
 void Update () {
     if (Input.GetMouseButtonDown(0)) {
         Vector3 mousePosition = Input.mousePosition;
         mousePosition.z = 10; // distance from the camera
         target = Camera.main.ScreenToWorldPoint(mousePosition);
         target.z = transform.position.z;
     }
     var movementDirection = (target - transform.position).normalized;

     if (Input.touchCount > 0)
     {
         target.x = Input.touches[0].deltaPosition.x;
         target.y = Input.touches[0].deltaPosition.y;
     }
     
     transform.position = Vector3.MoveTowards(transform.position, target, speed * Time.deltaTime);

     anim.SetFloat("SpeedX", movementDirection.x);
     anim.SetFloat("SpeedY", movementDirection.y);
 }

 void FixedUpdate () {

     float LastInputX = transform.position.x - target.x;
     float LastInputY = transform.position.y - target.y;

     if (LastInputX != 0 || LastInputY != 0) {
         anim.SetBool ("walking", true);
         if (LastInputX > 0) {
             anim.SetFloat ("LastMoveX", 1f);
         } else if (LastInputX < 0) {
             anim.SetFloat ("LastMoveX", -1f);
         } else {
             anim.SetBool ("walking", false);
         }
         if (LastInputY > 0) {
             anim.SetFloat ("LastMoveY", 1f);
         } else if (LastInputY < 0) {
             anim.SetFloat ("LastMoveY", -1f);
         } else {
             anim.SetFloat ("LastMoveY", 0f);
         }

     } else {
         anim.SetBool ("walking", false);
     }
 }

I then tested it out, but only to find that my LastMoveX and LastMoveY function isn't being called properly. What I mean is that when I clicked to the left my player goes there but it flips right in the process and when it finally reached it's position overall it faced right. It also did the same when I clicked to the right. Another problem I found was when I move down the Y axis. My animation kept on playing and wasn't stopping until I clicked somewhere else for example above the player. How can I make my LastMoveX and LastMoveY function properly? Thank you!

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

32 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

Related Questions

How to make my custom 3rd person character jump? 0 Answers

Need Advice on Rotation Animation with 2D Blendtree 0 Answers

How to set the blend tree threshold value during run time? 0 Answers

Animations in a blend tree. 0 Answers

How to prevent colliders animating between animation states? Also prevent rotation on x axis of blend tree. 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