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 santi5655 · Feb 17, 2013 at 05:02 AM · c#

Assets/characterFollower.cs(21,29): error CS0118: `characterFollower.walkCollider' is a `field' but a `type' was expected

i have two character in my game, one is the player and the another one is a guy that i want it to follow the player; i am making a script to change the velocity of the follow script that i have with two triggers (one for the walking speed and the another one for the running speed) so i want that if the character exits the walk trigger it will go at the walk speed specified in the script, if the character exits the run trigger it will go at the run speed also specified in the script and the same for entering in both triggers. So i have this error "Assets/characterFollower.cs(21,29): error CS0118: characterFollower.walkCollider' is a field' but a type' was expected" This is my follow script: using UnityEngine; using System.Collections;

public class Follow : MonoBehaviour {

 public Transform target;
 public Transform myTransform;
 public float rotationSpeed = 3;
 public float moveSpeed = 3;
 
 void Awake(){
     
     myTransform = transform;    
     
 }

 // Use this for initialization
 void Start () {
     
     target = GameObject.FindWithTag("Character").transform;
 
 }
 
 // Update is called once per frame
 void Update () {
     
     var lookDir = target.position - myTransform.position; 
     lookDir.y = 0; // zero the height difference 
     myTransform.rotation = Quaternion.Slerp(myTransform.rotation, Quaternion.LookRotation(lookDir), rotationSpeed*Time.deltaTime); 
     myTransform.position += myTransform.forward * moveSpeed * Time.deltaTime;

 
 }

}'

And this is what i am trying

`using UnityEngine; using System.Collections;

public class characterFollower : MonoBehaviour {

 public Collider walkCollider;
 public Collider runCollider;
 public Follow followScript;
 public float walkSpeed = 6;
 public float runSpeed = 18;
 public float idleSpeed = 0;
 public string characterTag;

 void Start () {
     
     followScript.moveSpeed = idleSpeed;
 
 }
 
 // Update is called once per frame
 void OnTriggerExit (walkCollider Trigger) 
 
 {
     if(Trigger.tag == characterTag)
     {    
         followScript.moveSpeed = walkSpeed;
     }
 }
 
 void OnTriggerEnter(walkCollider Trigger)
 
 {
     if(Trigger.tag = characterTag)
     {
         followScript.moveSpeed = idleSpeed;    
     }
 }
 
 void OnTriggerExit(runCollider Trigger)
 
 {
     if(Trigger.tag = characterTag)
     {
         followScript.moveSpeed = runSpeed;    
     }
 }
 
 void OnTriggerEnter(runCollider Trigger)
 
 {
     if(Trigger.tag = characterTag)
     {
         followScript.moveSpeed = walkSpeed;    
     }
 }
     

}'

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

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

Make Health script lose health when certain animation is played? 1 Answer

Unity crash at startup... 4 Answers

Click and drag - Object go through other objects when dragging 1 Answer

High Quality Movie textures in Unity Pro 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