Attributes 

    Namespace: SynicSugar.P2P

    Description 

    Attributes to Synchronize.

    Attributes 

    APIdescription
    NetworkPlayerFor class for each player to have UserID
    NetworkCommonsFor class
    SyncVarSynchronize variable with other users
    RpcSynchronize invoked function with other users
    TargetRpcSynchronize invoked function with other user
    SynicSynchronize all Synic variables with other user
    using SynicSugar.P2P;
    
    [NetworkPlayer]
    public partial class NetworkSample {
        [SyncVar]
        int syncIntVar;
    
        [Rpc]
        void RPCFuction(){
        }
    }