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 Daria2B · Jun 13, 2017 at 11:47 PM · animationanimatoranimator controllerplayer movementdisappearing

GameObject disappears on Animation transition

I'm very new to Unity and coding in general. I got stuck with my player disappearing after it enters the scene and animation transitions from Walk state to Idle. I couldn't find a solution that would work.

I've tried to change the rotation Interpolation in the Animation to Euler Angles (Quanternion) and Quanternion - it doesn't seem to work.

The parameter that sets off animation transition is "isMoving" - when true transition to Walk state, when false transition to Idle state.

Here below is the player controller code.

 using System.Collections;
 using System.Collections.Generic;
 using UnityEngine;
 
 public class PrincessController : MonoBehaviour {
 
     public float moveSpeed;
     private Vector3 movePosition;
     private Vector3 moveRotation;
     private bool pathChosen;
     private bool arriving;
     private Vector3 bottomLeft = new Vector3 (0, 0, 0);
     private Vector3 bottomRight = new Vector3 (Screen.width, 0, 0);
     private Vector3 arrivalPosition = new Vector3 (Screen.width*0.5f, Screen.height*0.75f, 0); 
 
     Animator myAnimation;
 
     // Use this for initialization
     void Start () {
         myAnimation = GetComponent<Animator>();
         arriving = true;
         pathChosen = false;
         myAnimation.SetBool("isMoving", true);
     }
 
     // Update is called once per frame
     void Update () {
         //character arrives from behind the screen
         if (arriving == true && movePosition != transform.position) {
             movePosition = Camera.main.ScreenToWorldPoint (arrivalPosition);
             transform.position = Vector3.MoveTowards(transform.position, movePosition, moveSpeed * Time.deltaTime);
         }
 
         //if character arrived at the initial spot
         if (movePosition == transform.position && pathChosen == false) {
             arriving = false;
             myAnimation.SetBool ("isMoving", false);
         }
 
         //if player clicked on a path button
         if (pathChosen == true) {
             var angle = Mathf.Atan2 (moveRotation.y - transform.position.y, moveRotation.x - transform.position.x) * Mathf.Rad2Deg;
 
             transform.rotation = Quaternion.Euler (0, 0, angle + 90);
 
             transform.position = Vector3.MoveTowards(transform.position, movePosition, moveSpeed * Time.deltaTime);
         }
     }
 
     //buttonChoice defines what button was clicked: false means left button, true means right button
     public void MoveToButton (bool buttonChoice) {
         myAnimation.SetBool("isMoving", true);
         pathChosen = true;
 
         if (buttonChoice == false) {
             movePosition = Camera.main.ScreenToWorldPoint (bottomLeft);
             moveRotation = Camera.main.ScreenToWorldPoint (bottomLeft);
         } else if (buttonChoice == true) {
             movePosition = Camera.main.ScreenToWorldPoint (bottomRight);
             moveRotation = Camera.main.ScreenToWorldPoint (bottomRight);
         }
 
     }
 }

Scene VS Game View after disappearance:

alt text

I have also received the following warnings while I was attempting to solve the issue. If I'm not mistaken the last two appeared when I removed the line "myAnimation.SetBool ("isMoving", false);". alt text

warnings-animator.png (78.7 kB)
untitled.png (334.5 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

201 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 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 Apply Animation to Player 0 Answers

How do I apply an animation to a sprite? 0 Answers

Can't play an animation from the Animator 1 Answer

Problems with using the same Animator Controller on multiple objects. 0 Answers

Help with animator controllers 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