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

Editor.HasFrameBounds()

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

描述

验证是否可以为该编辑器计算自定义边界。

使用此方法验证是否应为该窗口调用 Editor.OnGetFrameBounds。场景视图在调用框架操作时会调用 `HasFrameBounds` 和 `OnGetFrameBounds`。框架操作可以从任何地方调用,但通常在按下 F 键以对选定游戏对象进行框架时调用。

using UnityEngine;
using UnityEditor;

// This example traverses all bones in the hierarchy and calculates bounds for the entire object public class GameObjectEditorWindow: Editor { private bool HasFrameBounds() { // the result of this function depends on implementation // it will most likely be used to evaluate whether bounds // can exist for the targets of this Editor Window return Selection.objects.Length > 0; }

public Bounds OnGetFrameBounds() { Transform bone = Selection.activeTransform; Bounds bounds = new Bounds(bone.position, new Vector3(0, 0, 0)); foreach (Transform child in bone) bounds.Encapsulate(child.position);

if (bone.parent) bounds.Encapsulate(bone.parent.position);

return bounds; } }