User Tools

Site Tools


public:t-vien-14-1:lab_8_materials

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
public:t-vien-14-1:lab_8_materials [2014/03/19 08:42] – created hannespublic:t-vien-14-1:lab_8_materials [2024/04/29 13:33] (current) – external edit 127.0.0.1
Line 19: Line 19:
  
   - **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.   - **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:<code>using UnityEngine;+  - **Create Network Manager** Create a new ''GameObject'' (**GameObject->CreateEmpty**) and name it "NetworkManager". Create a new C# script called "Networking.cs" and attach it to this new game object. Paste the following code into this script:<code csharp>using UnityEngine;
 using System.Collections; using System.Collections;
  
Line 66: Line 66:
 } }
 </code> </code>
-  - +  - **Create Player** Create a regular cube (**GameObject->CreateOther->Cube**). Change its name to "NetworkPlayer". Add a ''CharacterMotor'' component to it (**Component->Character->CharacterMotor**). Add a ''NetworkView'' component to it (**Component->Miscellaneous->NetworkView**). Create a new C# script called "CharacterMovement.cs" and add the following code to it:<code csharp>using UnityEngine; 
 +using System.Collections; 
 + 
 +public class CharacterMovement : MonoBehaviour { 
 + 
 +  public float speed = 5.0f; 
 + public float gravity = 5.0f; 
 + 
 + private CharacterController cc; 
 + 
 + // Use this for initialization 
 + void Start () { 
 + cc = GetComponent<CharacterController>(); 
 +
 +  
 + // Update is called once per frame 
 + void Update () { 
 + if(networkView.isMine) { 
 + cc.Move (new Vector3(Input.GetAxis ("Horizontal")*speed*Time.deltaTime, -gravity*Time.deltaTime, Input.GetAxis("Vertical")*speed*Time.deltaTime)); 
 +
 +
 +}</code> 
 +  - **Turn Player into Prefab** Drag your ''NetworkedPlayer'' object into the project panel to create a Prefab and **delete** the original instance in the Hierarchy view. 
 +  - **Create a Spawn Point** Create a new empty game object and call it "SpawnPoint". Place it well **above** the plane.  
 +  - **Finalize Networking** Choose the ''NetworkManager'' and drag the ''NetworkPlayer'' **PreFab** into the ''Player Prefab'' property and drag the ''SpawnObject'' game object into the ''Spawn Object'' property. 
 +  - **Build Stand Alone** Go to **File->Build Settings...** and press **Player Settings...**. Under **Resolution** check the box marked **Run in Background**. Build a stand alone application and run it. Press **Start Server** in the application. Make sure you can move the box with the arrow keys. Start a second instance of the application but chose **Start Client** this time. Make sure you can move the cube, and see it move in both applications!
/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)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki