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 danish114206 · Feb 27, 2013 at 01:20 PM · animation

player animation dont work

hello,first i wn to tell you my languege is very sick :)

i ceate a charakter in blender , imake the animation to, i export that to FBX FILE AND IMPORT TO UNITY i chek the animation in unity by WINDOW-ANIMATION and the animation is working

i set the animation idle-walk-run-jump in the animation panen inthe inspector of the charakter and add the charakter controller to

afther that I attach this script into the inspector to make the player move by call the animation

NB:iget thiss script from 1 toritorial in google i chek to play the game the player still move but moving like a box not move with the animation

so waht is the problem with my script or what ??

SCRIPT js

var speed = 6.0; var walkSpeed = .8; var jumpSpeed = 6.0; var gravity = 20.0; var Character : Transform;

private var moveDirection = Vector3.zero; private var grounded : boolean = false;

private var walking : boolean = false; private var startup : boolean = true; private var running : boolean = true;

function FixedUpdate() { if (grounded) { moveDirection = new Vector3(Input.GetAxis("Horizontal"), 0, Input.GetAxis("Vertical"));

if (Input.GetMouseButton(0) && Input.GetMouseButton(1)) { moveDirection.z = 1; } moveDirection = transform.TransformDirection(moveDirection);

if(running == true){ moveDirection = speed; }else{ moveDirection = walkSpeed; } if (Input.GetButton ("Jump")) { Character.animation.CrossFade("jump"); moveDirection.y = jumpSpeed; }

if(Character){ if(Input.GetKey(KeyCode.LeftShift) && Input.GetKeyDown(KeyCode.R)){ if(running == true) { running = false; if(walking == true) Character.animation.CrossFade("walk"); }else{ running = true; if(walking == true) Character.animation.CrossFade("run"); } } if(startup == true){ startup = false; Character.animation.Play("idle"); } if((moveDirection == Vector3.zero)&&(walking == true)){ walking = false; Character.animation.CrossFade("idle"); }else{ if((moveDirection != Vector3.zero)&&(walking == false)){ walking = true; if(running == true){ Character.animation.CrossFade("run"); }else{ Character.animation.CrossFade("walk"); } } } } } moveDirection.y -= gravity * Time.deltaTime;

var controller : CharacterController = GetComponent(CharacterController); var flags = controller.Move(moveDirection * Time.deltaTime); grounded = (flags & CollisionFlags.CollidedBelow) != 0; } @script RequireComponent(CharacterController)

THE SCRIPT dosn't eror , unity not give any eror

im very-very need this plees help me

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 AlucardJay · Feb 27, 2013 at 06:02 PM 0
Share

For any help, please format your code. You can do this by highlighting all your code, then clicking the 10101 button at the top of the edit window.

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

10 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

Related Questions

Multiple Cars not working 1 Answer

Trying to simply play this animation... Help please. 1 Answer

Animation Scripting Help #C 1 Answer

animated sword + script 1 Answer

Need help with some OnTrigger Scripting 2 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