11 lines
289 B
C#
11 lines
289 B
C#
namespace FishNet.Serializing
|
|
{
|
|
[System.Serializable]
|
|
internal class TransformPackingData
|
|
{
|
|
public AutoPackType Position = AutoPackType.Packed;
|
|
public AutoPackType Rotation = AutoPackType.Packed;
|
|
public AutoPackType Scale = AutoPackType.Packed;
|
|
}
|
|
}
|