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
1
Question by Benjamin568 · May 30, 2016 at 03:23 PM · c#scripting problemmovement

Unity Space Shooter Tutorial Player Will Not Move

I should start out by saying that I'm completely new to this sort of thing and know virtually nothing about coding, although I really do want to learn about it. The script will build and save without issue, but when I attach the PlayerController script into the player game object and input the settings for it, the player will tilt, but would not move. For some reason, the script seems to be affecting the camera as well, as whenever I attach the script to the player the camera will zoom in and make it look as if the player was at the center rather than the bottom. Removing the script from the player will revert the camera back to the original position.

Here's my script:

 using UnityEngine;
 using System.Collections;
 [System.Serializable]
 
 public class Boundary
 {
     public float xMin, xMax, zMin, zMax;
 }
 public class PlayerController : MonoBehaviour
 {
     public Rigidbody rb;
     public float speed;
     public float tilt;
     public Boundary boundary;
 
     void Start()
     {
         rb = GetComponent<Rigidbody>();
     }
 
     void FixedUpdate()
     {
         float moveHorizontal = Input.GetAxis("Horizontal");
         float moveVertical = Input.GetAxis("Vertical");
 
         //Vector3 movement = new Vector3(moveHorizontal, 0.0f, moveVertical);
         Vector3 movement = new Vector3(moveHorizontal, moveVertical, 0.0f );
         rb.velocity = movement * speed;
         rb.position= new Vector3
             (Mathf.Clamp(rb.position.x,boundary.xMin,boundary.xMax),
                 0.0f,
                 Mathf.Clamp(rb.position.z,boundary.zMin,boundary.zMax)
             );
         rb.rotation = Quaternion.Euler(0.0f,0.0f,rb.velocity.x* -tilt);
     }
 }


I've tried to use several different codes from various "sources" (different comments on YouTube) and for some reason the code on the Unity webpage for the tutorial differs than from the video. Needless to say, none of them changed anything.

Any suggestions at all would be greatly appreciated, even if they don't end up solving the problem.

Thanks in advance.

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by zagwyn · Feb 11, 2017 at 08:46 AM

Uncheck "Is Kinematic" on the RigidBody for the Player object.

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

how do you fix error cs0426 the nested type 'module' does not exist in the type 'unityengine.particalsystem'"? 0 Answers

Input.GetAxisRaw always returns -0.6 1 Answer

Movement Sticking 0 Answers

Hexagonal Grid Rangefinding 1 Answer

Character Movement jerking 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