13 lines
277 B
C#
13 lines
277 B
C#
using UnityEngine;
|
|
|
|
namespace QFSW.QC.Serializers
|
|
{
|
|
public class UnityObjectSerializer : PolymorphicQcSerializer<Object>
|
|
{
|
|
public override string SerializeFormatted(Object value, QuantumTheme theme)
|
|
{
|
|
return value.name;
|
|
}
|
|
}
|
|
}
|