Quantcast
Channel: Questions in topic: "error message"
Viewing all articles
Browse latest Browse all 2891

what does error CS1001 mean i cant figure out whats wrong it says its wrong on line 14 but i cant see it

$
0
0
iam starting coding and making games but i ran into this error and i dont anderstand the ansers on the over quistions can someone please explain theres my code and the error thing this the error - Assets\playermovement.cs(14,37): error CS1001: Identifier expected this the code - using System.Collections; using System.Collections.Generic; using UnityEngine; public class playermovement : MonoBehaviour { public CharacterController controller; public float speed = 12f; public float gravity = -9.81f; public Transform groundCheck; public float groundDistance = 0, 4f; public LayerMask groundMask; Vector3 velocity; bool isGrounded; // Update is called once per frame void Update() { isGrounded = Physics.CheckSphere(groundCheck.position, groundDistance, groundMask); if(isGrounded && velocity.y < 0) { velocity.y = -2f; } float x = Input.GetAxis("Horizontal"); float z = Input.GetAxis("Vertical"); Vector3 move = transform.right * x + transform.forward * z; controller.Move(move * speed * Time.deltaTime); velocity.y += gravity * Time.deltaTime; controller.Move(velocity * Time.deltaTime); } }

Viewing all articles
Browse latest Browse all 2891

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>