Method group is Obsolete

NetworkIdentity.AssignClientAuthority

매뉴얼로 전환
Obsolete public bool AssignClientAuthority (NetworkConnection conn);

파라미터

connThe connection of the client to assign authority to.

반환

bool True if authority was assigned.

설명

This assigns control of an object to a client via the client's NetworkConnection.

This causes hasAuthority to be set on the client that owns the object, and NetworkBehaviour.OnStartAuthority will be called on that client. This object then will be in the NetworkConnection.clientOwnedObjects list for the connection.

Authority can be removed with RemoveClientAuthority. Only one client can own an object at any time. Only NetworkIdentities with localPlayerAuthority set can have client authority assigned. This does not need to be called for player objects, as their authority is setup automatically.