-
大小: 13.84MB文件类型: .zip金币: 1下载: 0 次发布日期: 2023-07-13
- 语言: 其他
- 标签: Navigation
资源简介
unity的Navigation寻路例子,完整的例子.
包含了所有的使用方法,跳跃,爬梯子,角色动作的切换行云流水,值得收藏
unity,untiy3d,u3d,Navigation,Nav mesh agent
代码片段和文件信息
using UnityEngine;
using System.Collections;
[RequireComponent (typeof (NavMeshAgent))]
public class DoorClient : MonoBehaviour
{
private NavMeshAgent navMeshAgent;
void Start() {
navMeshAgent = GetComponent();
}
public bool PassingThrough(Vector4 plane) {
NavMeshHit hit;
navMeshAgent.SamplePathPosition(-1 2.5f out hit);
if(hit.distance==0.0f) return false;
Vector3 next_pos = hit.position;
Vector3 curr_pos = transform.position;
// Test positions are on opposite sides of door plane.
float s1 = Vector3.Dot(next_pos plane) + plane.w;
float s2 = Vector3.Dot(curr_pos plane) + plane.w;
return s1*s2<0.0f;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-12-22 12:58 NavMeshExample35b7\
目录 0 2011-12-21 14:21 NavMeshExample35b7\Assets\
文件 6148 2011-12-21 13:04 NavMeshExample35b7\Assets\.DS_Store
目录 0 2011-12-21 13:14 NavMeshExample35b7\Assets\Gizmos\
文件 2818 2011-12-17 17:06 NavMeshExample35b7\Assets\Gizmos\BlueFlag32.png
文件 663 2011-12-17 17:06 NavMeshExample35b7\Assets\Gizmos\BlueFlag32.png.me
文件 2754 2011-12-21 13:07 NavMeshExample35b7\Assets\Gizmos\GreenFlag32.png
文件 663 2011-12-21 13:08 NavMeshExample35b7\Assets\Gizmos\GreenFlag32.png.me
文件 2697 2011-12-17 17:06 NavMeshExample35b7\Assets\Gizmos\RedFlag32.png
文件 663 2011-12-17 17:07 NavMeshExample35b7\Assets\Gizmos\RedFlag32.png.me
文件 60 2011-12-17 16:49 NavMeshExample35b7\Assets\Gizmos.me
目录 0 2011-12-21 14:19 NavMeshExample35b7\Assets\Materials\
目录 0 2011-12-17 18:03 NavMeshExample35b7\Assets\Materials\Block\
文件 4216 2011-12-17 18:03 NavMeshExample35b7\Assets\Materials\Block\BlockBlue.mat
文件 60 2011-12-17 17:07 NavMeshExample35b7\Assets\Materials\Block\BlockBlue.mat.me
文件 4216 2011-12-17 17:06 NavMeshExample35b7\Assets\Materials\Block\BlockDark.mat
文件 60 2011-12-17 17:07 NavMeshExample35b7\Assets\Materials\Block\BlockDark.mat.me
文件 4216 2011-12-17 17:06 NavMeshExample35b7\Assets\Materials\Block\BlockGray.mat
文件 60 2011-12-17 17:07 NavMeshExample35b7\Assets\Materials\Block\BlockGray.mat.me
文件 4216 2011-12-17 18:03 NavMeshExample35b7\Assets\Materials\Block\BlockRed.mat
文件 60 2011-12-17 16:49 NavMeshExample35b7\Assets\Materials\Block\BlockRed.mat.me
文件 60 2011-12-17 16:49 NavMeshExample35b7\Assets\Materials\Block.me
文件 4208 2011-12-17 17:06 NavMeshExample35b7\Assets\Materials\Blue.mat
文件 60 2011-12-17 17:07 NavMeshExample35b7\Assets\Materials\Blue.mat.me
文件 4216 2011-12-20 21:21 NavMeshExample35b7\Assets\Materials\defaultMat.mat
文件 60 2011-12-20 21:21 NavMeshExample35b7\Assets\Materials\defaultMat.mat.me
文件 4212 2011-12-20 14:12 NavMeshExample35b7\Assets\Materials\Green.mat
文件 60 2011-12-20 14:11 NavMeshExample35b7\Assets\Materials\Green.mat.me
文件 4208 2011-12-17 17:06 NavMeshExample35b7\Assets\Materials\Red.mat
文件 60 2011-12-17 17:07 NavMeshExample35b7\Assets\Materials\Red.mat.me
文件 60 2011-12-17 16:49 NavMeshExample35b7\Assets\Materials.me
............此处省略264个文件信息
相关资源
- Navigation Illumination ROS中的导航包的介
- StrapdownInertialNavigationTechnology_2ED.pdf
- BottomNavigationView+ViewPager+Fragment底部导
- Kotlin中使用BottomNavigationView实现底部导
- Estimation With Applications to Tracking and N
- BottomNavigationView+ViewPager+Fragment
- 简易答题app
- __EstimationwithApplicationstoTrackingandNavig
- Global_Positioning_Systems_Inertial_Navigation
- china-satellite-navigation-conference-csnc-201
- [2017]Springer Handbook of Global Navigation S
- Reciprocal Velocity Obstacles for Real-Time Mu
- 2D Pathfinding.zip
- IOS修改导航栏高度demo
- Material Design NavigationView DrawerLayout 侧滑
- Fragment底部导航
- blender-like.navigation
评论
共有 条评论