当前位置: 首页> 教育> 高考 > 站长权重_合肥网站运营_搜索引擎排名国内_百度认证是什么

站长权重_合肥网站运营_搜索引擎排名国内_百度认证是什么

时间:2025/7/11 0:46:54来源:https://blog.csdn.net/zouxin_88/article/details/143630122 浏览次数:0次
站长权重_合肥网站运营_搜索引擎排名国内_百度认证是什么

官方链接:空间网格 | PICO 开发者平台

注意:该功能只能打包成APK在PICO 4 Ultra上真机运行,无法通过串流或PICO developer center在PC上运行。使用之前要开启视频透视。

Inspector 窗口中的 PXR_Manager (Script) 面板上,勾选 Spatial Mesh 选框。

新建一个空物体名为SpatialMesh,添加PXR_Spatial Mesh Manager组件(生成网格)、SeethroughManager代码(开启透视)、SpatialMesh代码(发射球)

PXR_Spatial Mesh Manager中的Mesh Prefab 至少需要包含 Mesh Filter 组件。如果想显示扫描到的网格,则还需包含 Mesh Renderer 组件。

/
// Copyright (c) 2024 PICO Developer
// SPDX-License-Identifier: MIT
// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using System.Linq;public class SpatialMesh : MonoBehaviour
{public Text text;private static SpatialMesh _instance = null;public GameObject gun;public GameObject ballPrefab;public Transform firePoint;public static SpatialMesh Instance{get{if (_instance == null){_instance = FindObjectOfType<SpatialMesh>();}return _instance;}}int pressCount = 0;bool _previousTrigger = false;private void Update(){var rightHandDevice = UnityEngine.XR.InputDevices.GetDeviceAtXRNode(UnityEngine.XR.XRNode.RightHand);// 获取扳机键是否被按下bool triggerValue;bool suc = rightHandDevice.TryGetFeatureValue(UnityEngine.XR.CommonUsages.triggerButton, out triggerValue);if(suc){if (triggerValue != _previousTrigger && triggerValue){Debug.Log("Trigger button is pressed.");pressCount++;if (pressCount > 10000){pressCount = 0;}text.text = pressCount.ToString();var obj = GameObject.CreatePrimitive(PrimitiveType.Sphere);obj.transform.position = firePoint.position;obj.SetActive(true);obj.transform.localScale = new Vector3(0.5f, 0.5f, 0.5f);obj.AddComponent<Rigidbody>().velocity = gun.transform.forward*10;}_previousTrigger = triggerValue;}}
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Unity.XR.PXR;public class SeethroughManager : MonoBehaviour
{// 开启透视void Start(){PXR_Manager.EnableVideoSeeThrough = true;        }
}

关键字:站长权重_合肥网站运营_搜索引擎排名国内_百度认证是什么

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: