gpt4 book ai didi

c# - 统一: Wrap mesh softly around other mesh?

转载 作者:行者123 更新时间:2023-11-30 15:15:58 28 4
gpt4 key购买 nike

给定一个网格(如左侧的立方体对象)和另一个自定义的类似球体的网格(右侧;如果更容易,它可以是另一种形状),Unity 和 C# 中的一个如何在运行时软包裹第二个网格围绕第一?谢谢!

enter image description here

最佳答案

以下方法,感谢 VirtualMethodStudio 的指针,采用包装球体,然后为其中的每个顶点向内转换光线,并将该顶点调整到命中点:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ShrinkWrapSphere : MonoBehaviour {

void Start() {
Debug.Log("Starting...");

MeshFilter meshFilter = gameObject.GetComponent<MeshFilter>();
Mesh mesh = meshFilter.mesh;

Vector3[] vertices = new Vector3[mesh.vertices.Length];
System.Array.Copy(mesh.vertices, vertices, vertices.Length);

for (int i = 0; i < vertices.Length; i++) {
Vector3 rayDirection = -mesh.normals[i];

RaycastHit hit;
if ( Physics.Raycast( vertices[i], rayDirection, out hit, 100f ) ) {
vertices[i] = hit.point * 2f;
}
else {
vertices[i] = Vector3.zero;
}
}

mesh.vertices = vertices;

Debug.Log("Done. Vertices count " + vertices.Length);

// mesh.RecalculateBounds();
// mesh.RecalculateNormals();
// mesh.RecalculateTangents();
}

}

enter image description here

然后可以通过 this asset 的简化功能进一步简化生成的网格。 .

上面的替代方法是使用 Collider.ClosestPoint(vertexPoint)。

关于c# - 统一: Wrap mesh softly around other mesh?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51022070/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com