Alteruna / au-multiplayer-guide

2 stars 0 forks source link

I followed the simple project tutorial in Wiki. The PlayerController script doesn't compile. #1

Open Raymond131 opened 5 months ago

Raymond131 commented 5 months ago

I'm trying to learn alteruna to make a multiplayer game for my compsci class final assignment. I followed the tutorial project. However, when I copy the PlayerController script, it always shows this error: Assets\PlayerController.cs(11,54): error CS0246: The type or namespace name 'User' could not be found (are you missing a using directive or an assembly reference?) I don't know why and I would appreciate help on how to fix it. image image

RobbertK92 commented 5 months ago

@Raymond131 You are missing the reference to Alteruna. On line 2 please add the following line: using Alteruna;

You're problem should be solved after that.