mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 02:50:32 +00:00
Minor style fixes. (#514)
This commit is contained in:
parent
5a9f10ec47
commit
4d40ddb891
@ -10,13 +10,13 @@ namespace Mirror
|
||||
public class NetworkAnimator : NetworkBehaviour
|
||||
{
|
||||
// configuration
|
||||
[SerializeField] Animator m_Animator;
|
||||
[SerializeField] uint m_ParameterSendBits;
|
||||
[SerializeField] Animator m_Animator;
|
||||
[SerializeField] uint m_ParameterSendBits;
|
||||
|
||||
// properties
|
||||
public Animator animator
|
||||
{
|
||||
get { return m_Animator; }
|
||||
get => m_Animator;
|
||||
set
|
||||
{
|
||||
m_Animator = value;
|
||||
@ -41,9 +41,9 @@ public bool GetParameterAutoSend(int index)
|
||||
return (m_ParameterSendBits & (uint)(1 << index)) != 0;
|
||||
}
|
||||
|
||||
int m_AnimationHash;
|
||||
int m_TransitionHash;
|
||||
float m_SendTimer;
|
||||
int m_AnimationHash;
|
||||
int m_TransitionHash;
|
||||
float m_SendTimer;
|
||||
|
||||
bool sendMessagesAllowed
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user