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

スクリプト言語

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

Physics.CheckCapsule

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

public static function CheckCapsule(start: Vector3, end: Vector3, radius: float, layermask: int = DefaultRaycastLayers): bool;
public static bool CheckCapsule(Vector3 start, Vector3 end, float radius, int layermask = DefaultRaycastLayers);
public static def CheckCapsule(start as Vector3, end as Vector3, radius as float, layermask as int = DefaultRaycastLayers) as bool

Description

指定の位置にカプセルを作成し、end から end までの間にコライダーの付いたオブジェクトがヒットするか調べます。ヒットした場合、trueを返します。

		// Given the start and end waypoints of a corridor, check if there is enough
	// room for an object of a certain width to pass through.
	function CorridorIsWideEnough(startPt: Vector3, endPt: Vector3, width: float) {
		return Physics.CheckCapsule(startPt, endPt, width);
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    bool CorridorIsWideEnough(Vector3 startPt, Vector3 endPt, float width) {
        return Physics.CheckCapsule(startPt, endPt, width);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def CorridorIsWideEnough(startPt as Vector3, endPt as Vector3, width as float) as bool:
		return Physics.CheckCapsule(startPt, endPt, width)