Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
2 captures
13 Jun 22 - 14 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 LyokoWarrior4 · Jun 02, 2021 at 10:10 PM · movementcamera-movementy axis

Unity Movement

Hello, just getting back into Unity and enjoying the new Input system. Messing around trying to make a 3D platformer. However, when I move the analog stick forward it always changes the Y axis on rotation to 0. I want to know if maybe Cinemachine has something built in or do I have to write a script that would change where forward is depending on where the camera is facing. I don't know if I explained that well enough but thank you. Any help would be appreciated. I commented the movement script below.

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 LyokoWarrior4 · Jun 02, 2021 at 10:21 PM 0
Share

public class characterMovement : MonoBehaviour { Animator animator;

 int isWalkingHash;
 int isRunningHash;
 PlayerInput input;


 Vector2 currentMovement;
 bool movementPressed;
 bool runPressed;
 Vector2 cameraMovement;
 

 private void Awake()
 {
     input = new PlayerInput();
     input.CharacterControls.Movement.performed += ctx =>
     {
         currentMovement = ctx.ReadValue<Vector2>();
         movementPressed = currentMovement.x != 0 || currentMovement.y != 0;
         
     };
     input.CharacterControls.Camera.performed += ctx => Debug.Log(ctx.ReadValueAsObject());
     input.CharacterControls.Run.performed += ctx => runPressed = ctx.ReadValueAsButton();
      
 }
 void Start()
 {
     animator = GetComponent<Animator>();

     isWalkingHash = Animator.StringToHash("isWalking");
     isRunningHash = Animator.StringToHash("isRunning");



 }

 // Update is called once per frame
 void Update()
 {
     handleMovement();
     handleRotation();
 }
 void handleRotation()
 {
     Vector3 currentPosition = transform.position;

     Vector3 newPosition = new Vector3(currentMovement.x, 0, currentMovement.y);

     Vector3 positionToLookAt = currentPosition + newPosition;
     transform.LookAt(positionToLookAt);
 }
 void handleMovement()
 {
     bool isRunning = animator.GetBool(isRunningHash);
     bool isWalking = animator.GetBool(isWalkingHash);

     if(movementPressed && !isWalking)
     {
         animator.SetBool(isWalkingHash, true);
     }

     if (!movementPressed && isWalking)
     {
         animator.SetBool(isWalkingHash, false);
     }
     if((movementPressed && runPressed )&& !isRunning)
     {
         animator.SetBool(isRunningHash, true);
     }
     if((!movementPressed || !runPressed) && isRunning){
         animator.SetBool(isRunningHash, false);
     }

 }

 void handleCameraMovement()
 {



 }


 void OnEnable()
 {
     input.CharacterControls.Enable();
 }
 void OnDisable()
 {
     input.CharacterControls.Disable();
 }


}

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by EvStg · Jun 03, 2021 at 08:44 AM

Hi,

Are you using any virtual camera with cinemachine ? The problem could be here.

Also, I'm not sure that you set up correctly the camera in the script, maybe try to use the Find() function in the Start or Awake function to use the camera.

Hope this can help you !

Comment
Add comment · Share
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

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

179 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

Related Questions

How to select one character and play it's animation? 1 Answer

Character object inexplicably jumps up on the Y axis when arrow keys are pressed to move it along x or z 0 Answers

How To Make a 3d object follow mouse and move towards it while the camera is following that 3d object? 1 Answer

Why does this IF statement loop without finishing? 0 Answers

My vector3 lerp is not working properly 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