无码av一区二区三区无码,在线观看老湿视频福利,日韩经典三级片,成 人色 网 站 欧美大片在线观看

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

物體檢測(cè)和物體拾取與放置(代碼)

2023-04-07 08:19 作者:蘇小敗在路上  | 我要投稿

這里將視頻中的代碼放在這里:

using System.Collections;

using System.Collections.Generic;

using UnityEngine;

using UnityEngine.UI;


public class Player : MonoBehaviour

{

? ? float speed = 5;

? ? public Image background;

? ? public Text contetnTxt;

? ? GameObject obj = null;

? ? bool isPick = false;

? ? void Start()

? ? {

? ? ? ? background.gameObject.SetActive(false);

? ? }

? ? void Update()

? ? {

? ? ? ? if (Input.GetKey(KeyCode.W))

? ? ? ? {

? ? ? ? ? ? transform.Translate(Vector3.forward * speed * Time.deltaTime);

? ? ? ? }

? ? ? ? else if (Input.GetKey(KeyCode.S))

? ? ? ? {

? ? ? ? ? ? transform.Translate(Vector3.back * speed * Time.deltaTime);

? ? ? ? }

? ? ? ? if (Input.GetKey(KeyCode.A))

? ? ? ? {

? ? ? ? ? ? transform.Translate(Vector3.left * speed * Time.deltaTime);

? ? ? ? }

? ? ? ? else if (Input.GetKey(KeyCode.D))

? ? ? ? {

? ? ? ? ? ? transform.Translate(Vector3.right * speed * Time.deltaTime);

? ? ? ? }


? ? ? ? if (Input.GetKeyDown(KeyCode.F) && obj)

? ? ? ? {

? ? ? ? ? ? isPick = !isPick;

? ? ? ? ? ? if (isPick)

? ? ? ? ? ? {

? ? ? ? ? ? ? ? contetnTxt.text = "F 放置";

? ? ? ? ? ? ? ? obj.transform.parent = transform;

? ? ? ? ? ? }

? ? ? ? ? ? else

? ? ? ? ? ? {

? ? ? ? ? ? ? ? contetnTxt.text = "F 拾取";

? ? ? ? ? ? ? ? obj.transform.parent = null;

? ? ? ? ? ? }

? ? ? ? }

? ? }

? ? private void OnTriggerEnter(Collider other)

? ? {

? ? ? ? if (other.gameObject)

? ? ? ? {

? ? ? ? ? ? obj = other.gameObject;

? ? ? ? ? ? background.gameObject.SetActive(true);

? ? ? ? }

? ? }

? ? private void OnTriggerExit(Collider other)

? ? {

? ? ? ? obj = null;

? ? ? ? background.gameObject.SetActive(false);

? ? }

}


物體檢測(cè)和物體拾取與放置(代碼)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
盈江县| 河津市| 浙江省| 乌兰浩特市| 弥渡县| 罗平县| 汉川市| 缙云县| 贡觉县| 沙河市| 武功县| 平舆县| 晋城| 若尔盖县| 南宁市| 图们市| 体育| 黄骅市| 易门县| 松溪县| 沙田区| 穆棱市| 南木林县| 云霄县| 密云县| 徐闻县| 清徐县| 浠水县| 大埔区| 定西市| 宣化县| 周宁县| 剑阁县| 化隆| 新巴尔虎右旗| 老河口市| 高台县| 门头沟区| 西吉县| 衡阳市| 牟定县|