mirror of
https://github.com/BlackMATov/unity-iso-tools.git
synced 2025-12-14 00:28:30 +07:00
14 lines
285 B
C#
14 lines
285 B
C#
using UnityEngine;
|
|
using IsoTools.Internal;
|
|
|
|
namespace IsoTools {
|
|
[SelectionBase]
|
|
[ExecuteInEditMode, DisallowMultipleComponent]
|
|
public sealed class IsoParent : IsoBehaviour<IsoParent> {
|
|
public IsoWorld isoWorld {
|
|
get {
|
|
return FindFirstActiveParentWorld();
|
|
}
|
|
}
|
|
}
|
|
} |