10 lines
281 B
C#
10 lines
281 B
C#
![]() |
using UnityEngine;
|
||
|
|
||
|
namespace BehaviorDesigner.Runtime
|
||
|
{
|
||
|
[System.Serializable]
|
||
|
public class SharedTransform : SharedVariable<Transform>
|
||
|
{
|
||
|
public static implicit operator SharedTransform(Transform value) { return new SharedTransform { mValue = value }; }
|
||
|
}
|
||
|
}
|