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 gamezdragon · Feb 20, 2013 at 07:34 PM · floats

Character moves off to side and floats

Hello again. I have used a script that has been very successful. Thanks to alucardj I now have a script that makes the character play the animations and move. Yet whenever I try to make the character move forward (by pressing the 'w' key) it moves off to the side and floats above the ground! Here is my script:

 #pragma strict
  
  
 var leftButton : String;
 var rightButton : String;
  
 var forward : Vector3;
 var dt : float; // double;
  
 var leftRotation : float;
 var rightRotation : float;
  
 var suspended : boolean;
 var moveSpeed : float; // double;
  
  
 function Start()
 {
 leftButton = "w";
 rightButton = "s";
  
 forward = Vector3.forward; // new Vector3( 0, 0, 1 );
 dt = Time.deltaTime;
  
 leftRotation = -0.7071069;
 rightRotation = 0.7071069;
  
 suspended = false;
 moveSpeed = 3.0;
 }
  
 function Update()
 {
 if ( suspended )
 {
 return;
 }
  
 //if (Input.GetButton(leftButton))
 else if ( Input.GetKey( leftButton ) )
 {
 transform.Translate( forward * moveSpeed * dt );
 animation.Play( "Walk_" );
 }
 //else if (Input.GetButton(rightButton))
 else if ( Input.GetKey( rightButton ) )
 {
 transform.Translate( forward * moveSpeed * dt );
 animation.Play( "Walk_" );
 }
 else
 {
 animation.Play( "Rest" );
 }
 }
  
 function SetSuspension( setting : boolean )
 {
 suspended = setting;
 }

Is there anything wrong with this script? I edited it a little and made it a little better, but nothing seems to be wrong except the fact that the character moves to the side and floats.

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 gamezdragon · Mar 02, 2013 at 03:26 AM 0
Share

FIXED! my actual animated character was moved off to the side and floating above the ground! $$anonymous$$ake sure that when you animate your character, it is in the same spot each time.

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

9 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

A node in a childnode? 1 Answer

What dimensions for a GUI texture 2D main menu? 1 Answer

Unity Script Refernece 1 Answer

I can only see the inside of my model. 1 Answer

Enabling a text or button after loadlevel. 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