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 Trustrix · Dec 27, 2012 at 10:23 AM · animationsprint

what's wrong with this script?

 #pragma strict
  
 var moveTo : Vector3;
 var rotateTo : Vector3;
 var movementSpeed : float;
 
 
  
 var sway : String = "AnimationName";
 var idle : String = "AnimationName";
  
 var anim : GameObject;
 var animSpeed : float = 1.0;
 
 
 
 
   
 function Update () {
         if(Input.GetKey("left shift") && Input.GetKey("up") && CharacterController.isGrounded){ // here you can use boolean (if player is walking or running)
                 
                 
                 var runTarget = Quaternion.Euler(rotateTo);
                 transform.localRotation = Quaternion.Slerp(transform.localRotation, runTarget, Time.deltaTime * movementSpeed);
                 transform.localPosition = Vector3.Lerp(transform.localPosition, moveTo, Time.deltaTime * movementSpeed);
                 anim.animation[sway].speed = animSpeed;
                 anim.animation.CrossFade (sway);
         }else{
                 transform.localRotation = Quaternion.Slerp(transform.localRotation, Quaternion.Euler (0, 0, 0), Time.deltaTime * movementSpeed);
                 transform.localPosition = Vector3.Lerp(transform.localPosition, Vector3(0,0,0), Time.deltaTime * movementSpeed);
                 anim.animation.CrossFade (idle);
         }
 }

and i get this error : An instance of type 'UnityEngine.CharacterController' is required to access non static member 'isGrounded'.

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

2 Replies

· Add your reply
  • Sort: 
avatar image
1

Answer by fafase · Dec 27, 2012 at 10:31 AM

Your answer is in the error.

 CharacterController.isGrounded

This line above would mean isGrounded is a static member but it is not.

You need to create a variable of type CharacterController (A), fetch the CC component(B) and place a reference to it(C) in the variable and then use the instance(D).

 var controller:CharacterController;  //A

 function Start(){
     controller = GetComponent(CharacterController); //B and C
 }
 function Update(){
     if(controller.isGrounded)//D
 }
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
avatar image
0

Answer by Trustrix · Dec 27, 2012 at 12:18 PM

I have done and now i get this error : Object reference not set to an instance of an object

 #pragma strict
  
 var moveTo : Vector3;
 var rotateTo : Vector3;
 var movementSpeed : float;
 
 
 var controller : CharacterController; 
 var sway : String = "AnimationName";
 var idle : String = "AnimationName";
  
 var anim : GameObject;
 var animSpeed : float = 1.0;
 
 function Start(){
     controller = GetComponent(CharacterController); //B and C
 }
 
 
 
   
 function Update () {
         if(Input.GetKey("left shift") && Input.GetKey("up") && controller.isGrounded){ // here you can use boolean (if player is walking or running)
                 
                 
                 var runTarget = Quaternion.Euler(rotateTo);
                 transform.localRotation = Quaternion.Slerp(transform.localRotation, runTarget, Time.deltaTime * movementSpeed);
                 transform.localPosition = Vector3.Lerp(transform.localPosition, moveTo, Time.deltaTime * movementSpeed);
                 anim.animation[sway].speed = animSpeed;
                 anim.animation.CrossFade (sway);
         }else{
                 transform.localRotation = Quaternion.Slerp(transform.localRotation, Quaternion.Euler (0, 0, 0), Time.deltaTime * movementSpeed);
                 transform.localPosition = Vector3.Lerp(transform.localPosition, Vector3(0,0,0), Time.deltaTime * movementSpeed);
                 anim.animation.CrossFade (idle);
         }
 }
Comment
Add comment · Show 2 · 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
avatar image fafase · Dec 27, 2012 at 12:59 PM 0
Share

A couple of things you are doing wrong here. You get the CC but you use the transform to move the guy. Somehow wrong. See here on how to use the CC http://unitygems.com/basic-ai-character/

Now for you error, is the CC component and that script attached to the same game object? And I mean the exact same, not only the same object at different level of hierarchy.

avatar image Trustrix · Dec 27, 2012 at 01:51 PM 0
Share

I have : -camera with mouse look, character controller, character motor and FPS input controller. - an Empty game object i've called sway where i have put my arms with the weapon i've called deagle - The deagle where i have put this script - All works Well but when i jump, my sprint animation(i've $$anonymous$$ade with this script) works too.

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

Multiple Cars not working 1 Answer

Unity animations not working 1 Answer

How to export MMD model to Unity? 0 Answers

Scripting help 2 Answers

How to get an animation script working? 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