File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,8 @@ Use with caution:
41
41
42
42
1 . Open your ** Unity Hub** and select the ** Project** you are presently working on or create a ** New Project** .
43
43
1 . From the menu bar, navigate to ** Window** > ** Package Manager** .
44
- 1 . Click the plus sign ![ Add] ( /img/add.png ) in the ** Package Manager** status bar and select ** Add package by name..** .
44
+ 1 . When using 2021.3+ click the plus sign ![ Add] ( /img/add.png ) in the ** Package Manager** status bar and select ** Add package by name** .
45
+ 1 . If using 2020.3LTS there is no option to add by package name, instead click ** Add package from git URL** .
45
46
46
47
![ Package Installed] ( /img/install/addbyname.png )
47
48
@@ -62,4 +63,4 @@ See the following content to continue your journey using Netcode:
62
63
* [ Boss Room] ( ../learn/bossroom/getting-started-boss-room.md )
63
64
* [ 2D Spaceshooter Bitesize Sample] ( ../learn/bitesize/bitesize-spaceshooter.md )
64
65
* [ Invaders Bitesize Sample] ( ../learn/bitesize/bitesize-invaders.md )
65
- * [ Client-Driven Bitesize Sample] ( ../learn/bitesize/bitesize-clientdriven.md )
66
+ * [ Client-Driven Bitesize Sample] ( ../learn/bitesize/bitesize-clientdriven.md )
Original file line number Diff line number Diff line change @@ -70,8 +70,7 @@ public class NetworkVariableTest : NetworkBehaviour
70
70
if (t_now - last_t > 0 . 5 f )
71
71
{
72
72
last_t = t_now ;
73
- Debug .Log (" Server set its var to: " + ServerNetworkVariable .Value + " , has client var at: " +
74
- ClientNetworkVariable .Value );
73
+ Debug .Log (" Server set its var to: " + ServerNetworkVariable .Value );
75
74
}
76
75
}
77
76
}
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ public class NetworkCommandLine : MonoBehaviour
186
186
Now we will test that the command line helper script works.
187
187
188
188
1 . Select ** File** > ** Build and Run** .
189
- 1 . Create a new folder called ` Build ` inside your Golden Path project folder.
189
+ 1 . Create a new folder called ` Build ` inside your Hello World project folder.
190
190
1 . ** Save As** the binary ` HelloWorld ` .
191
191
1 . Your project will build and launch in a new window, and you should see the plane.
192
192
1 . Quit your app.
You can’t perform that action at this time.
0 commit comments