言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Rigidbody.SweepTestAll

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Sumbission failed

For some reason your suggested change could not be submitted. Please try again in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public function SweepTestAll(direction: Vector3, distance: float = Mathf.Infinity): RaycastHit[];
public RaycastHit[] SweepTestAll(Vector3 direction, float distance = Mathf.Infinity);
public def SweepTestAll(direction as Vector3, distance as float = Mathf.Infinity) as RaycastHit[]

Parameters

direction Direction to sweep the Rigidbody object.
distance Length of the sweep.

Description

Rigidbody.SweepTestのようですが、これはヒットした全てを返します

The sweep may return multiple hits against the same collider if more then one of the rigidbody's attached colliders would hit it. Note that this function only works when a primitive collider type (sphere, cube or capsule) is attached to the rigidbody object - mesh colliders will not work, although they can be detected in the scene by the sweep.