当前位置:网站首页>Unity Day03
Unity Day03
2022-08-04 05:32:00 【漫漫有点方】
Day03
今天解决了vs中不会报错以及弹出列表,在
编辑里找到首选项
在右侧修改成自己使用的编译器即可
今天改变:
代码中改变了第一人称与第三人称的视线问题,第一人称可以按自己当前鼠标所改变的视线进行行走。
Vector3 d = transform.TransformPoint(Vector3.left) - transform.position;
character.Move(d * speed * Time.deltaTime);
第三人称相机随人物进行移动,同时第三人称下,人物的面向始终是鼠标方向。
character.Move(Vector3.forward * speed * Time.deltaTime)
第三人称视角
void TCameraRotate()
{
//射线 屏幕上的一个点转换成射线
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
RaycastHit hit;
if(Physics.Raycast(ray,out hit, 100,~(1 << 7)))
{
Debug.DrawLine(ray.origin,hit.point,Color.green);
//四元素
Vector3 v = hit.point - transform.position;
Quaternion q = Quaternion.LookRotation(v);
Vector3 v1 = q.eulerAngles;
v1.x = 0;
transform.eulerAngles = v1;
}
}
修改了刚体,碰撞体。改成了角色控制器。最后发现跳跃被限制。平地摔问题解决,跳跃之后在进行测试。
边栏推荐
- The usefulness of bind() system call
- Machine Learning - Processing of Text Labels for Classification Problems (Feature Engineering)
- JDBC第一学之进行数据库连接时出现The server time zone.....解决办法
- Cut the hit pro subtitles export of essays
- [Development Miscellaneous][Editor][Code Reading]ctags & vim
- LeetCode_Nov_1st_Week
- The second official example analysis of the MOOSE platform - about creating a Kernel and solving the convection-diffusion equation
- 华为鲲鹏arm服务器下使用webrtc和boost踩坑记--编译篇
- 库函数的模拟实现-C语言
- [日常办公][shell]常用代码段
猜你喜欢
随机推荐
MySQL索引
CSDN spree -- college round table spree
第一章 绪论
淘宝分布式文件系统存储(二)
动态内存管理-C语言
[Daily Office][Miscellaneous][vscode]tab space
Install Minikube Cluster in AWS-EC2
MNIST Handwritten Digit Recognition - From Perceptrons to Convolutional Neural Networks
第二章 STA相关概念
常见的一些排序
C语言结构体(必须掌握版)
DRA821 环境搭建
No matching function for call to 'RCTBridgeModuleNameForClass'
Treating as key frame since WebRTC-SpsPpsIdrIsH264Keyframe is disabled 解决
最全的最详细的指针讲解(C语言)
Thunderbolt turns off automatic updates
LeetCode_Nov_2nd_Week
Shell基础
SFTP的用法
[daily office][ssh]cheatsheet