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