五月天青色头像情侣网名,国产亚洲av片在线观看18女人,黑人巨茎大战俄罗斯美女,扒下她的小内裤打屁股

歡迎光臨散文網(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ó)家法律
镇巴县| 巴中市| 界首市| 彩票| 沂南县| 衡东县| 多伦县| 开阳县| 达日县| 宜阳县| 象州县| 三穗县| 大竹县| 临桂县| 河源市| 淅川县| 周口市| 彭泽县| 抚远县| 翼城县| 南投县| 赤水市| 永城市| 彰武县| 正定县| 吴堡县| 青川县| 江西省| 九台市| 尼勒克县| 壤塘县| 潜江市| 宝清县| 临洮县| 高青县| 特克斯县| 苏尼特左旗| 察雅县| 扬中市| 乌兰县| 福建省|