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

PhysicsShapeGroup2D.SetShapeRadius

建议修改

成功!

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

关闭

提交失败

由于某些原因,您的修改建议无法提交。请<a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public void SetShapeRadius(int shapeIndex, float radius);

参数

shapeIndex 存储在 PhysicsShapeGroup2D 中的形状的索引。形状索引从零开始,形状组具有的形状数量由 shapeCount 指定。
radius 要设置的形状半径值。

描述

设置形状的半径。

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 shapeIndex = shapeGroup.AddCircle ( center: Vector2.zero, radius: 0.5f );

// Fetch the Circle shape and validate the radius. var physicsShape = shapeGroup.GetShape(shapeIndex); Assert.AreApproximatelyEqual(0.5f, physicsShape.radius);

// Update the Circle radius. shapeGroup.SetShapeRadius(shapeIndex, 2f);

// Fetch the Circle shape and validate the radius. physicsShape = shapeGroup.GetShape(shapeIndex); Assert.AreApproximatelyEqual(2f, physicsShape.radius); } }