Unity3d_Multiplayer Netwoking10

Shooting (Single Player)

射击(单人)

A common feature in multiplayer games is to have the player be able to shoot bullets and have these bullets work across all Clients in the game.

多人游戏的一个共同特点是让玩家可以在游戏中使用子弹和子弹来对付所有的客户。

This section will add shooting, but in a single-player, non-networked manner.

这一节将增加射击,但在单人,非网络的方式。

How to make shooting “network aware” will be covered in the next section of this lesson.

如何使射击“网络意识”将在本课的下一节讨论。

Create a new Sphere primitive GameObject.

创建一个新的球体原始游戏对象。

Rename the Sphere GameObject “Bullet”.

重命名球体游戏对象“子弹”。

With the Bullet GameObject selected,

选择了Bullet GameObject,

...

change the scale of the GameObject’s Transform to (0.2, 0.2, 0.2).

改变游戏对象转换的规模(0.2,0.2,0.2)。

...

find and add the component: Physics > Rigidbody.

发现并添加组件:物理>刚体。

On the Rigidbody component, set the Use Gravity checkbox to false.

在刚体组件上,将使用重力复选框设置为false。

Drag the Bullet GameObject into the Project Window to make a prefab asset.

将Bullet GameObject拖到项目窗口中,使其成为预置资产。

Delete the Bullet GameObject from the scene.

从场景中删除Bullet GameObject。

Save the scene.

保存场景。

The PlayerController script will now need to be updated for shooting.

PlayerController脚本现在需要更新用于拍摄。

The script will need to have a reference to the Bullet prefab and have code to do the actual shooting logic.

该脚本需要参考子弹预置,并有代码来执行实际的拍摄逻辑。

Open the PlayerController script for editing.

打开PlayerController脚本进行编辑。

Add a public field for the Bullet prefab.

为子弹预制板添加一个公共区域。

public GameObject bulletPrefab;

Add a public field for the location of the Bullet Spawn.

添加一个公共字段,以确定子弹产生的位置。

public Transform bulletSpawn;

公共变换bulletSpawn;

Add Input handling in the Update function.

在更新函数中添加输入处理。

if (Input.GetKeyDown(KeyCode.Space))

{

Fire();

}

Add a “Fire” function to fire a Bullet.

void Fire()

{

    // Create the Bullet from the Bullet Prefab

    var bullet = (GameObject)Instantiate (

        bulletPrefab,

        bulletSpawn.position,

        bulletSpawn.rotation);

    // Add velocity to the bullet

    bullet.GetComponent().velocity = bullet.transform.forward * 6;

    // Destroy the bullet after 2 seconds

    Destroy(bullet, 2.0f);

}

The final script will look like this:

最后的脚本是这样的:

PlayerController:

C#

usingUnityEngine;

usingUnityEngine.Networking;

publicclassPlayerController:NetworkBehaviour

{

publicGameObject bulletPrefab;

publicTransform bulletSpawn;

voidUpdate()

 {

if(!isLocalPlayer) 

 {

return; 

 } 

 var x=Input.GetAxis("Horizontal")*Time.deltaTime* 150.0f; 

 var z=Input.GetAxis("Vertical")*Time.deltaTime* 3.0f; 

 transform.Rotate(0, x, 0); transform.Translate(0, 0, z);

if(Input.GetKeyDown(KeyCode.Space))

 {

 Fire(); 

 } 

 }

void Fire()

    {

        // Create the Bullet from the Bullet Prefab

        var bullet = (GameObject)Instantiate(

            bulletPrefab,

            bulletSpawn.position,

            bulletSpawn.rotation);

        // Add velocity to the bullet

        bullet.GetComponent().velocity = bullet.transform.forward * 6;

        // Destroy the bullet after 2 seconds

        Destroy(bullet, 2.0f);       

    }

publicoverridevoidOnStartLocalPlayer () 

 {

 GetComponent().material.color=Color.blue

 }

}

Save the script.

保存脚本。

Return to Unity.

回到Unity。

In the next step, we need to set up the Player GameObject to reflect changes in the PlayerController script.

下一步,我们需要设置Player GameObject来反映PlayerController脚本中的更改。

Drag the Player prefab into the Hierarchy View to be able to edit the Player GameObject.

将播放器预置到层次视图中,以编辑播放器的游戏对象。

With the Player GameObject selected,

选择了玩家的游戏对象,

...

create a new Cylinder primitive as a child.

作为一个孩子创建一个新的圆柱原语。

Rename the Cylinder GameObject to “Gun”.

将圆筒游戏对象重命名为“枪”。

With the Gun GameObject selected,

选择了枪的游戏对象,

remove the Capsule Collider Component.

拆去太空舱碰撞部件。

set the Transform's Position to: (0.5, 0.0, 0.5).

将转换的位置设置为:(0.5,0.0,0.5)。

set the Transform's Rotation to: (90.0, 0.0, 0.0).

将转换的旋转设置为:(90.0,0.0,0.0)。

set the Transform's Scale to (0.25, 0.5, 0.25).

将转换的规模设置为(0.25,0.5,0.25)。

set the Material to the Black Material.

将材料设置为黑色材料。

The Player GameObject should look like this:

玩家的游戏对象应该是这样的:


With the Player GameObject selected,

选择了玩家的游戏对象,

...

create a new empty GameObject as a child.

作为一个孩子创建一个新的空的游戏对象。

Rename this empty GameObject “Bullet Spawn”.

将这个空的游戏对象重命名为“Bullet Spawn”。

Set the Bullet Spawn’s Position to (0.5, 0.0, 1.0).

将弹珠的位置设置为(0.5,0.0,1.0)。

This should place the Bullet Spawn’s Transform Position to the end of the Gun GameObject.

这应该将子弹的转换位置放置到枪的游戏对象的末端。


With the Player GameObject selected,

选择了玩家的游戏对象,

...

apply the changes to the Prefab asset.

将更改应用于预置资产。

Delete the Player GameObject from the scene.

从场景中删除玩家的游戏对象。

Save the scene.

保存场景。

The next step is to set up the PlayerController component on the Player prefab.

下一步是在播放器预置上设置PlayerController组件。

Select the Player prefab.

选择球员预制。

With the Player prefab selected:

与玩家预制选择:

...

add the Bullet prefab to the Bullet Prefab field in the PlayerController component.

在PlayerController组件中向子弹预置字段添加子弹预置。

...

add the Bullet Spawn child to the BulletSpawn field in the PlayerMovement component.

在PlayerMovement组件中,将“子”子元素添加到“弹药”字段中。

Save the project.

保存项目。

Test the current state of the project.

测试项目的当前状态。

Build and Run this scene as a standalone application.

构建并运行这个场景作为一个独立的应用程序。

Click the Host button from the in-game UI to start this game as a Host.

单击游戏内UI中的主机按钮以作为主机启动此游戏。

Move the Player GameObject.

玩家GameObject移动。

Return to Unity.

回到Unity。

Enter Play Mode.

进入播放模式。

Click the LAN Client button from the in-game UI to connect to the Host as a Client.

单击游戏内UI中的LAN客户端按钮以连接到主机作为客户端。

Pressing the spacebar should create a new Bullet GameObject at the Bullet Spawn position for the local Player GameObject.

按下空格键应该为本地玩家的游戏对象创建一个新的子弹游戏对象。

The bullet is not created on other Clients, as the bullets and shooting code are not network aware.

子弹并不是在其他客户端上创建的,因为子弹和射击代码没有网络意识。

Close the standalone player.

关闭独立的球员。

Return to Unity.

回到Unity。

Exit Play Mode.

退出播放模式。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351