Skip to content

Commit

Permalink
Fix TransformInspector to select multiple objects
Browse files Browse the repository at this point in the history
  • Loading branch information
kochounoyume committed Dec 18, 2024
1 parent 71f0e37 commit 0224bdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
using UnityEditor;
using UnityEngine;
using UnityEngine;

namespace MinimalUtility.Editor
namespace UnityEditor.UI
{
/// <summary>
/// ワールドの座標・回転・大きさも表示する<see cref="Transform"/>カスタムエディタ.
/// </summary>
[CanEditMultipleObjects]
[CustomEditor(typeof(Transform))]
public class TransformInspector : UnityComponentInspector<Transform>
internal sealed class TransformInspector : UnityEditor.TransformInspector
{
/// <inheritdoc/>
protected override string InspectorTypeName => "UnityEditor.TransformInspector";

/// <inheritdoc/>
public override void OnInspectorGUI()
{
Expand Down

0 comments on commit 0224bdb

Please sign in to comment.