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
0
Question by imhu7485 · Dec 18, 2017 at 12:51 AM · unity5method

The error : No overload for method 'Clamps' takes 1 argument.

using UnityEngine; using System.Collections;

[System.Serializable] public class Boundary { public float xMin, xMax, zMin, zMax; }

public class PlayerController : MonoBehaviour {

 public float speed;
 public float tilt;
 public Boundary boundary;

 public GameObject shot;
 public GameObject shotSpawn;
 public float fireRate;

 private float nextFire;

 void Update ()
 {
     if (Input.GetButton("Jump") && Time.time > nextFire)
     {
         shot = Instantiate(shot) as GameObject;
         nextFire = Time.time + fireRate;
         //GameObject clone =
         shot.transform.position = shotSpawn.transform.position;

     }
 }
 void FixedUpdate ()
 {
     float moveHorizontal = Input.GetAxis ("Horizontal");
     float moveVertical = Input.GetAxis ("Vertical");

     Vector3 movement = new Vector3 (moveHorizontal, 0.0f, moveVertical);
     GetComponent<Rigidbody> ().velocity = movement * speed;

     GetComponent<Rigidbody> ().position = new Vector3 

(Mathf.Clamp (GetComponent ().position.x, boundary.xMin, boundary.xMax), 0.0f, Mathf.Clamp (GetComponent ().position.z), boundary.zMin, boundary.zMax); GetComponent().rotation = Quaternion.Euler (0.0f, 0.0f, GetComponent().velocity.x * -tilt); } }

It says the error is in this line of code.

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
1

Answer by Bunny83 · Dec 18, 2017 at 12:58 AM

You have a closing bracket after position.z which should be at the end of the line.

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 imhu7485 · Dec 18, 2017 at 01:38 AM 0
Share

Thanks, I cant believe I didnt see that. But it still says ") expected" on the same line. Still cant get it to work.

avatar image Bunny83 imhu7485 · Dec 18, 2017 at 02:08 AM 1
Share

Are you sure that you deleted the bracket after position.z and added one at the end of the line? Every opening bracket requires a closing bracket. Always.


If you have trouble with that simple syntax rules you may should avoid writing that long and nested lines.


First of all you should avoid using GetComponent every frame (let alone using it several times in one frame, especially to get the same component). Declare a Rigidbody variable in your class and use GetComponent once in Start

 Rigidbody rb;
 
 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);
     rb.velocity = movement * speed;
     
     Vector3 pos = rb.position;
     pos.x = $$anonymous$$athf.Clamp(pos.x, boundary.x$$anonymous$$in, boundary.x$$anonymous$$ax);
     pos.y = 0f;
     pos.z = $$anonymous$$athf.Clamp(pos.z, boundary.z$$anonymous$$in, boundary.z$$anonymous$$ax);
     rb.position = pos;
     
     rb.rotation = Quaternion.Euler (0.0f, 0.0f, rb.velocity.x * -tilt);
 }

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

82 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 avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

[C#] Why is this method called twice? 0 Answers

Static method performance vs non static 0 Answers

Call method of a behaviour from a scripotableobject 0 Answers

importing .fbx file breaks into many polymesh 1 Answer

I'm not able to make the build for unity oculus project. 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