I dont really understand what’s going on (i’m a beginerr) help pls
Assets\Script\Character.cs(4,7): error CS0246: The type or namespace name ‘unityEngine’ could not be found (are you missing a using directive or an assembly reference?)
Assets\Script\Character.cs(27,16): error CS0246: The type or namespace name ‘RawImage’ could not be found (are you missing a using directive or an assembly reference?)
You’re looking at the wrong script. The errors are from “Character.cs” but this screenshot is from “CharacterManager.cs”
In any case, make sure all spelling and capitalization matches perfectly. From your error messags itseems like your script has using unityEngine;
but you need to have using UnityEngine;
(note the capitalization)
1 Like
Owh yeah i just noticed THX