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

PhysicsShape2D.shapeType

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

public PhysicsShapeType2D shapeType;

描述

形状类型决定了此 PhysicsShape2D 如何使用顶点和半径。

有关不同形状类型的更多信息,请参阅 PhysicsShapeType2D 文档。

using UnityEngine;
using UnityEngine.Assertions;

public class Example : MonoBehaviour { void Start() { // Create a shape group. var shapeGroup = new PhysicsShapeGroup2D();

// Add a Circle to the shape group. var circleShapeIndex = shapeGroup.AddCircle ( center: new Vector2(-2f, 3f), radius: 1f );

// Add a Capsule to the shape group. var capsuleShapeIndex = shapeGroup.AddCapsule ( vertex0: Vector2.down, vertex1: Vector2.up, radius: 0.5f );

// Fetch the shapes. var circleShape = shapeGroup.GetShape(circleShapeIndex); var capsuleShape = shapeGroup.GetShape(capsuleShapeIndex);

// Validate the shape types. Assert.AreEqual(PhysicsShapeType2D.Circle, circleShape.shapeType); Assert.AreEqual(PhysicsShapeType2D.Capsule, capsuleShape.shapeType); } }