-
大小: 12KB文件類型: .zip金幣: 2下載: 0 次發布日期: 2021-05-17
- 語言: 其他
- 標簽: ARFoundation??可視平面??
資源簡介
ARFoundation中個性化可視平面的相關圖片,腳本,Shader與ARFeatheredPlaneMeshVisualizer。

代碼片段和文件信息
using?System.Collections.Generic;
using?UnityEngine;
using?UnityEngine.XR.ARFoundation;
using?UnityEngine.XR.ARSubsystems;
[RequireComponent(typeof(ARRaycastManager))]
public?class?AppControler?:?MonoBehaviour
{
????public??Gameobject?spawnPrefab;
????static?List?Hits;
????private?ARRaycastManager?mRaycastManager;
????private?Gameobject?spawnedobject?=?null;
????private?void?Start()
????{
????????Hits?=?new?List();
????????mRaycastManager?=?GetComponent();
????}
????void?Update()
????{
????????if?(Input.touchCount?==?0)
????????????return;
????????var?touch?=?Input.GetTouch(0);
????????if?(mRaycastManager.Raycast(touch.position?Hits?TrackableType.PlaneWithinPolygon?|?TrackableType.PlaneWithinBounds))
????????{
????????????var?hitPose?=?Hits[0].pose;
????????????if?(spawnedobject?==?null)
????????????{
????????????????spawnedobject?=?Instantiate(spawnPrefab?hitPose.position?hitPose.rotation);
????????????}
????????????else
????????????{
????????????????spawnedobject.transform.position?=?hitPose.position;
????????????}
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-07-08?18:49??Materials\
?????文件????????2408??2019-07-08?16:53??Materials\FeatheredPlaneMaterial.mat
?????文件?????????182??2019-07-02?13:54??Materials\FeatheredPlaneMaterial.mat.me
?????文件?????????188??2019-06-20?21:57??Materials\red.mat.me
?????目錄???????????0??2019-07-08?18:49??sc
?????文件????????1143??2019-06-21?08:07??sc
?????文件?????????243??2019-06-20?21:18??sc
?????文件????????3878??2019-05-16?01:50??sc
?????文件?????????243??2019-07-08?16:34??sc
?????目錄???????????0??2019-07-08?18:49??Shaders\
?????文件????????1590??2019-05-16?01:50??Shaders\FeatheredPlaneShader.shader
?????文件?????????204??2019-07-02?13:54??Shaders\FeatheredPlaneShader.shader.me
?????目錄???????????0??2019-07-08?18:49??Textures\
?????文件????????1982??2019-07-02?13:55??Textures\FeaturePoint.png.me
?????文件???????19662??2019-07-08?16:52??Textures\PlanePatternCross.png
?????文件????????1982??2019-07-08?16:52??Textures\PlanePatternCross.png.me
?????文件????????1982??2019-07-02?13:56??Textures\PlanePatternDot.png.me
評論
共有 條評論