91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 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.meta
?????文件????????2754??2011-12-21?13:07??NavMeshExample35b7\Assets\Gizmos\GreenFlag32.png
?????文件?????????663??2011-12-21?13:08??NavMeshExample35b7\Assets\Gizmos\GreenFlag32.png.meta
?????文件????????2697??2011-12-17?17:06??NavMeshExample35b7\Assets\Gizmos\RedFlag32.png
?????文件?????????663??2011-12-17?17:07??NavMeshExample35b7\Assets\Gizmos\RedFlag32.png.meta
?????文件??????????60??2011-12-17?16:49??NavMeshExample35b7\Assets\Gizmos.meta
?????目錄???????????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.meta
?????文件????????4216??2011-12-17?17:06??NavMeshExample35b7\Assets\Materials\Block\BlockDark.mat
?????文件??????????60??2011-12-17?17:07??NavMeshExample35b7\Assets\Materials\Block\BlockDark.mat.meta
?????文件????????4216??2011-12-17?17:06??NavMeshExample35b7\Assets\Materials\Block\BlockGray.mat
?????文件??????????60??2011-12-17?17:07??NavMeshExample35b7\Assets\Materials\Block\BlockGray.mat.meta
?????文件????????4216??2011-12-17?18:03??NavMeshExample35b7\Assets\Materials\Block\BlockRed.mat
?????文件??????????60??2011-12-17?16:49??NavMeshExample35b7\Assets\Materials\Block\BlockRed.mat.meta
?????文件??????????60??2011-12-17?16:49??NavMeshExample35b7\Assets\Materials\Block.meta
?????文件????????4208??2011-12-17?17:06??NavMeshExample35b7\Assets\Materials\Blue.mat
?????文件??????????60??2011-12-17?17:07??NavMeshExample35b7\Assets\Materials\Blue.mat.meta
?????文件????????4216??2011-12-20?21:21??NavMeshExample35b7\Assets\Materials\defaultMat.mat
?????文件??????????60??2011-12-20?21:21??NavMeshExample35b7\Assets\Materials\defaultMat.mat.meta
?????文件????????4212??2011-12-20?14:12??NavMeshExample35b7\Assets\Materials\Green.mat
?????文件??????????60??2011-12-20?14:11??NavMeshExample35b7\Assets\Materials\Green.mat.meta
?????文件????????4208??2011-12-17?17:06??NavMeshExample35b7\Assets\Materials\Red.mat
?????文件??????????60??2011-12-17?17:07??NavMeshExample35b7\Assets\Materials\Red.mat.meta
?????文件??????????60??2011-12-17?16:49??NavMeshExample35b7\Assets\Materials.meta
............此處省略264個文件信息

評論

共有 條評論