I have imported the standard assets “Characters” into my project, and I am using the “ThirdPersonController” prefab for my player.
When I try to get a hold of any of my custom scripts (lets call it [myscriptname]) from within the “ThirdPersonUserControl”, I get an error; “The type or namespace [myscriptname] could not be found (are you missing a using directive or an assembly reference?)”
I am not declaring any namespace for [myscriptname]. Below is the using directives for ThirdPersonUserControl.cs.
using System;
using UnityEngine;
using UnityStandardAssets.CrossPlatformInput;