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

スクリプト言語

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

HandleUtility.PickRectObjects

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 PickRectObjects(rect: Rect): GameObject[];
public static GameObject[] PickRectObjects(Rect rect);
public static def PickRectObjects(rect as Rect) as GameObject[]

Parameters

rect An screen rectangle specified with pixel coordinates.

Description

Pick GameObjects that lie within a specified screen rectangle.

This is useful for implementing multi-select tools that allow the user to drag a rectangle around the desired objects.

public static function PickRectObjects(rect: Rect, selectPrefabRootsOnly: bool): GameObject[];
public static GameObject[] PickRectObjects(Rect rect, bool selectPrefabRootsOnly);
public static def PickRectObjects(rect as Rect, selectPrefabRootsOnly as bool) as GameObject[]

Description