Unity3D新手入门教程(二)资源文件,物体操作,组件,脚本
作者:
风之子__ | 来源:发表于
2022-05-01 17:04 被阅读0次
六 资源文件
- Assets资源目录
- Modle,Texture,AudioClip,Script,Material
- Meta,描述文件
- 场景文件*.unity
- 资源包*.Unity Package
- Unity资源商店
七 物体操作
- 轴心Pivot
- 父子关系
- 空物体EmptyObject
- Global和Local
- Global世界坐标系
- Local本地坐标系
- 左手坐标系
- Pivot和Center
八 组件Component
- 代表功能
- 添加删除组件
- light
- mesh filter
- mesh renderer
- AudioSource
- Transform
- 摄像机Camera
- z轴为拍摄方向
- Align with View对齐视角
九 脚本
- 脚本:游戏驱动逻辑
- 当前物体
- this当前脚本组件对象
- this.gameObject当前物体
- this.gameObject.name当前物体名字
- 利用物体对象获取其他属性
- 简写
- this.gameObject.transform等同于this.transform
- using UnityEngin(API命名空间)
- 脚本类继承自MonoBehaviour
- 三维向量类Vector3
- 物体的坐标
- transform.position世界坐标
- transform.localPosition本地坐标
- Vector3三维向量类
- 播放模式
十 帧更新
- 帧更新
- Frame,FrameRate,FPS
- Update()
- Time
- Time.time
- Time.deltaTime时间差
- Application.targetFrameRate近似帧率
- 移动物体
- 更新positaion
- 匀速运动
- 设置speed
- distance=speed*Time.deltaTime;
本文标题:Unity3D新手入门教程(二)资源文件,物体操作,组件,脚本
本文链接:https://www.haomeiwen.com/subject/imjpyrtx.html
网友评论