当前位置:网站首页>unity3d-游戏物体控制方法
unity3d-游戏物体控制方法
2022-08-03 18:27:00 【liwulin0506】
键盘控制方向
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Player : MonoBehaviour
{
public Rigidbody rd;
// Start is called before the first frame update
void Start()
{
Debug.Log("1111111111111");
//rd = GetComponent<Rigidbody>();
}
// Update is called once per frame
void Update()
{
//transform.Rotate(Vector3.up * Time.deltaTime * 100);
float f = Input.GetAxis("Horizontal");
float v = Input.GetAxis("Vertical");
rd.AddForce(new Vector3(f,0,v)*1);
}
}
给prefab添加标签,检测碰幢和销毁物体
private void OnCollisionEnter(Collision collision)
{
if (collision.gameObject.tag=="food")
{
Destroy(collision.gameObject);
}
}
触发检测
勾选collider中的istriigger,就变成了触发器
p
边栏推荐
猜你喜欢
WEB 渗透之CSRF
BinomialTree 二叉树
在线监控机房内的UPS电源及运行环境,解决方案来了
Execution plan of mysql
LeetCode - 102. 二叉树的层序遍历;110. 平衡二叉树;098. 验证二叉搜索树
CodeTON Round 2 (Div. 1 + Div. 2, Rated, Prizes), problem: (D) Magical Array
Mkke:为什么无法从Oracle 11g或12c升级到Oracle 23c?
懵逼!阿里一面被虐了,幸获内推华为技术四面,成功拿到offer,年薪40w
Uniswap或将开启“费用开关”,UNI持有者可享受分红
常见亲脂性细胞膜染料DiO, Dil, DiR, Did光谱图和实验操作流程
随机推荐
WEB 渗透之CSRF
动态打印菱形
MVCC多版本并发控制的理解
【汇编语言03】第2章 寄存器——实验1:查看CPU和内存,用机器指令和汇编指令编程
基于ck+redash构建MySQL慢日志+审计日志展示平台
PHP base notes - NO. 1
云渲染的优势与劣势
首届MogDB征文活动开启啦!
CodeTON Round 2 (Div. 1 + Div. 2, Rated, Prizes), problem: (D) Magical Array
广告电商、泰山众筹、链动2+1,这3个模式到底怎么样?
xxl-job 实现email发送警告的代码解析(一行一行代码解读)
vulnhub pyexp: 1
货比四家 version tb1.63
LyScript 内存交换与差异对比
【mysql】SIGN(x) function
dd命令:用于读取、转换并输出数据
懵逼!阿里一面被虐了,幸获内推华为技术四面,成功拿到offer,年薪40w
TiFlash 计算层概览
多商户商城系统功能拆解21讲-平台端分销订单
87.(cesium之家)cesium热力图(贴地形)