This commit is contained in:
CortexCore 2025-07-11 11:45:30 +08:00
parent 1e4643f20f
commit 87007c9c24
2 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,6 @@ using System.Collections.Generic;
using BITKit;
using BITKit.WorldNode;
using Unity.Mathematics;
using UnityEngine;
namespace Net.Project.B.Mark
{
@ -16,7 +15,7 @@ namespace Net.Project.B.Mark
public class NameMark:IWorldNode
{
#if UNITY_5_3_OR_NEWER
[SerializeReference, SubclassSelector] private IReference name;
[UnityEngine.SerializeReference, SubclassSelector] private IReference name;
public string Name => name?.Value;
#endif
}

View File

@ -2,6 +2,7 @@ using System;
using System.Collections;
using System.Collections.Generic;
using BITKit.WorldNode;
#if UNITY_5_3_OR_NEWER
using UnityEngine;
namespace Net.Project.B.WorldNode
@ -15,4 +16,5 @@ namespace Net.Project.B.WorldNode
public Vector3 emptyJointEuler;
public Transform visualModel;
}
}
}
#endif