//------------------------------------------------------------
// Game Framework
// Copyright © 2013-2021 Jiang Yin. All rights reserved.
// Homepage: https://gameframework.cn/
// Feedback: mailto:ellan@gameframework.cn
//------------------------------------------------------------
using System;
using UnityEngine;
namespace MetaClient
{
[Serializable]
public abstract class EntityData
{
[SerializeField]
private int m_Id = 0;
[SerializeField]
private int m_TypeId = 0;
[SerializeField]
private Vector3 m_Position = Vector3.zero;
[SerializeField]
private Quaternion m_Rotation = Quaternion.identity;
public EntityData(int entityId, int typeId)
{
m_Id = entityId;
m_TypeId = typeId;
}
///
/// 实体编号。
///
public int Id
{
get
{
return m_Id;
}
}
///
/// 实体类型编号。
///
public int TypeId
{
get
{
return m_TypeId;
}
}
///
/// 实体位置。
///
public Vector3 Position
{
get
{
return m_Position;
}
set
{
m_Position = value;
}
}
///
/// 实体朝向。
///
public Quaternion Rotation
{
get
{
return m_Rotation;
}
set
{
m_Rotation = value;
}
}
}
}