From 9df6316c5937a0e3dad3f3aa7d70b5029544b58a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Albin=20Cor=C3=A9n?= Date: Thu, 19 Apr 2018 09:26:48 +0200 Subject: [PATCH] Fixed SyncedVarHook issue --- MLAPI/Attributes/SyncedVar.cs | 2 +- .../MonoBehaviours/Core/NetworkedBehaviour.cs | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/MLAPI/Attributes/SyncedVar.cs b/MLAPI/Attributes/SyncedVar.cs index 19e7111..c469874 100644 --- a/MLAPI/Attributes/SyncedVar.cs +++ b/MLAPI/Attributes/SyncedVar.cs @@ -11,7 +11,7 @@ namespace MLAPI.Attributes /// /// The method name to invoke when the SyncVar get's updated. /// - public string hook; + public string hookMethodName; /// /// If true, the syncedVar will only be synced to the owner. /// diff --git a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs index 9c08c75..56593ac 100644 --- a/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs +++ b/MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs @@ -213,24 +213,24 @@ namespace MLAPI.MonoBehaviours.Core { if(sortedFields[i].IsDefined(typeof(SyncedVar), true)) { - object[] syncedVarAttributes = sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true); - MethodInfo method = null; - if (!string.IsNullOrEmpty(((SyncedVar)syncedVarAttributes[0]).hook)) - { - method = GetType().GetMethod(((SyncedVar)syncedVarAttributes[0]).hook, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); - break; - } + SyncedVar attribute = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]); + + MethodInfo hookMethod = null; + + if (!string.IsNullOrEmpty(attribute.hookMethodName)) + hookMethod = GetType().GetMethod(attribute.hookMethodName, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance); + FieldType fieldType = FieldTypeHelper.GetFieldType(sortedFields[i].FieldType); if (fieldType != FieldType.Invalid) { syncedVarFields.Add(new SyncedVarField() { Dirty = false, - Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target, + Target = attribute.target, FieldInfo = sortedFields[i], FieldType = fieldType, FieldValue = sortedFields[i].GetValue(this), - HookMethod = method + HookMethod = hookMethod }); } else