最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(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ó)家法律
罗甸县| 崇仁县| 南部县| 青阳县| 阿坝县| 辽宁省| 黎川县| 通辽市| 通榆县| 当涂县| 团风县| 沂南县| 龙口市| 古田县| 桐城市| 呼图壁县| 咸阳市| 镇巴县| 乌恰县| 蓬溪县| 奉节县| 邵阳县| 威海市| 江阴市| 原平市| 西青区| 镇巴县| 慈溪市| 彩票| 黔西县| 嘉祥县| 平定县| 合水县| 昌宁县| 龙岩市| 九龙城区| 商水县| 汉沽区| 海城市| 纳雍县| 米林县|