mirror of
https://github.com/Dadechin/Unity-WebSocket.git
synced 2025-07-04 04:14:34 +00:00
12 lines
222 B
C#
12 lines
222 B
C#
namespace FishNet.Component.Transforming
|
|
{
|
|
[System.Flags]
|
|
public enum SynchronizedProperty : byte
|
|
{
|
|
None = 0,
|
|
Parent = 1,
|
|
Position = 2,
|
|
Rotation = 4,
|
|
Scale = 8
|
|
}
|
|
} |