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