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 /
avatar image
0
Question by ShaneShara · Aug 04, 2016 at 05:36 AM · script error

Unhandled Exception Error Script

Hello, I am following FPS tutorials for unity, and when I wrote the script for first person controller, it worked, but out of the blue, with nothing changed I get this error that comes and goes saying

"Unhandled Exception: System.UnauthorizedAccessException: Access to the path "C:\Users\UserName\Desktop\FolderName\ProjectName\Temp\Assembly-CSharp-Editor.dll.mdb" is denied."

I changed the name of the user and folder for privacy, but that's the error I get. The script runs completely fine on visual studio, and the script is dragged on the object I am working with.

The main thing that's strange is sometimes I get this error and sometimes I don't. With nothing changed in the script. This has happened with other unity scripts that have already been built by Unity as well.

This is the script i am using though based off the tutorial.

" using UnityEngine; using System.Collections;

public class FirstPersonController : MonoBehaviour {

 // Use this for initialization
 public float movementSpeed = 5.0f;
 public float mouseSensitivity = 5.0f;
 public float jumpSpeed = 5.0f;
 float verticalRotation = 0;
 public float upDownRange = 60.0f;
 float verticalVelocity = 0;

 void Start()
 {
     Cursor.visible = false;
 }

 // Update is called once per frame
 void Update()
 {
     CharacterController characterController = GetComponent<CharacterController>();
     float rotLeftRight = Input.GetAxis("Mouse X") * mouseSensitivity;
     transform.Rotate(0, rotLeftRight, 0);

     verticalRotation -= Input.GetAxis("Mouse Y") * mouseSensitivity;
     verticalRotation = Mathf.Clamp(verticalRotation, -upDownRange, upDownRange);
     Camera.main.transform.rotation = Quaternion.Euler(verticalRotation, 0, 0);




     //movement
     float forwardSpeed = Input.GetAxis("Vertical") * movementSpeed;
     float sideSpeed = Input.GetAxis("Horizontal") * movementSpeed;

     verticalVelocity += Physics.gravity.y * Time.deltaTime;

     if (characterController.isGrounded && Input.GetButton("Jump"))
     {
         verticalVelocity = jumpSpeed;
     }


     Vector3 speed = new Vector3(sideSpeed, verticalVelocity, forwardSpeed);

     speed = transform.rotation * speed;


     characterController.Move(speed * Time.deltaTime);

 }

}"

Just an FYI I am using this tutorial https://www.youtube.com/watch?v=WZLhtsMlrV0, but like I said this seems to be an issue with any tutorial I have used

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Roll a Ball tutorial 1 Answer

First Person Controller Scripts Are Not Working! 1 Answer

transform.position assign attempt for not valid. Input position is { NaN, NaN, NaN } -1 Answers

day night script errors 0 Answers

Keyword 'void' cannot be used in this context 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