This commit is contained in:
parent
1e4643f20f
commit
87007c9c24
|
@ -4,7 +4,6 @@ using System.Collections.Generic;
|
||||||
using BITKit;
|
using BITKit;
|
||||||
using BITKit.WorldNode;
|
using BITKit.WorldNode;
|
||||||
using Unity.Mathematics;
|
using Unity.Mathematics;
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
namespace Net.Project.B.Mark
|
namespace Net.Project.B.Mark
|
||||||
{
|
{
|
||||||
|
@ -16,7 +15,7 @@ namespace Net.Project.B.Mark
|
||||||
public class NameMark:IWorldNode
|
public class NameMark:IWorldNode
|
||||||
{
|
{
|
||||||
#if UNITY_5_3_OR_NEWER
|
#if UNITY_5_3_OR_NEWER
|
||||||
[SerializeReference, SubclassSelector] private IReference name;
|
[UnityEngine.SerializeReference, SubclassSelector] private IReference name;
|
||||||
public string Name => name?.Value;
|
public string Name => name?.Value;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@ using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using BITKit.WorldNode;
|
using BITKit.WorldNode;
|
||||||
|
#if UNITY_5_3_OR_NEWER
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace Net.Project.B.WorldNode
|
namespace Net.Project.B.WorldNode
|
||||||
|
@ -15,4 +16,5 @@ namespace Net.Project.B.WorldNode
|
||||||
public Vector3 emptyJointEuler;
|
public Vector3 emptyJointEuler;
|
||||||
public Transform visualModel;
|
public Transform visualModel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
Loading…
Reference in New Issue