14 lines
254 B
C#
14 lines
254 B
C#
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace ARLocation {
|
||
|
|
public class ConditionalPropertyAttribute : PropertyAttribute
|
||
|
|
{
|
||
|
|
public string Name;
|
||
|
|
|
||
|
|
public ConditionalPropertyAttribute(string name)
|
||
|
|
{
|
||
|
|
Name = name;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|