public:t-vien-14-1:lab_8_materials
This is an old revision of the document!
Table of Contents
Lab 8: Networking
Goal
The goal of this lab is to create a very simple shared virtual environment using Unity's networking support.
Preparation
- Nothing
Documentation
- Unity's Networking Reference Guide
- This lab is based on the CG Cookie Introduction to Networking video tutorial
Procedure
- Empty Scene Make an empty scene with a ground and a directional light. Position the camera such that you have a good view of the ground plane.
- Create Network Manager Create a new
GameObject
(GameObject→CreateEmpty) and name it “NetworkManager”. Create a new C# script called “Networking” and attach it to this new game object. Paste the following code into this script:using UnityEngine; using System.Collections; public class Networking : MonoBehaviour { public GameObject playerPrefab; public Transform spawnObject; bool initialized = false; // Use this for initialization void Start () { } // Update is called once per frame void Update () { } void OnGUI() { if(!initialized) { if(GUI.Button (new Rect(10,10,100,30),"Start Server")) { Network.InitializeServer(32,2500,true); } if(GUI.Button (new Rect(10,100,100,30),"Start Client")) { Network.Connect ("127.0.0.1",2500); } } } void OnServerInitialized() { initialized = true; Debug.Log ("Server Initialized"); spawnPlayer(); } void OnConnectedToServer() { initialized = true; spawnPlayer(); } void spawnPlayer() { Network.Instantiate(playerPrefab, spawnObject.position, Quaternion.identity,0); } }
/var/www/cadia.ru.is/wiki/data/attic/public/t-vien-14-1/lab_8_materials.1395218566.txt.gz · Last modified: 2024/04/29 13:33 (external edit)