版本:Unity 6 (6000.0)
语言English
  • C#

CustomCollider2D.customVertexCount

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。尽管我们无法接受所有提交,但我们确实会阅读用户提出的每条建议更改,并在适用情况下进行更新。

关闭

提交失败

出于某种原因,无法提交您建议的更改。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

public int customVertexCount;

说明

碰撞体使用的顶点总数。(只读)

总形状计数为customShapeCount的所有碰撞体形状都使用此处的全部顶点。

using UnityEngine;
using UnityEngine.Assertions;

public class Example : MonoBehaviour { void Start() { // Fetch the custom collider. var customCollider = GetComponent<CustomCollider2D>();

// Create a shape group. var shapeGroup = new PhysicsShapeGroup2D();

// Add a Circle to the shape group. shapeGroup.AddCircle ( center: new Vector2(-1f, 0f), radius: 0.5f );

// Add a box to the shape group. shapeGroup.AddBox ( center: new Vector2(1f, 0f), size: new Vector2(1f, 1f) );

// Assign our shapes. customCollider.SetCustomShapes(shapeGroup);

// Validate the custom shape vertices. Assert.AreApproximatelyEqual(shapeGroup.vertexCount, customCollider.customVertexCount); } }