Skip to content

Commit

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

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

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

0 comments on commit 21a7efe

Please sign in to comment.