Fixed SyncedVarHook issue
This commit is contained in:
parent
f45ac572ea
commit
9df6316c59
@ -11,7 +11,7 @@ namespace MLAPI.Attributes
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The method name to invoke when the SyncVar get's updated.
|
/// The method name to invoke when the SyncVar get's updated.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string hook;
|
public string hookMethodName;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// If true, the syncedVar will only be synced to the owner.
|
/// If true, the syncedVar will only be synced to the owner.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -213,24 +213,24 @@ namespace MLAPI.MonoBehaviours.Core
|
|||||||
{
|
{
|
||||||
if(sortedFields[i].IsDefined(typeof(SyncedVar), true))
|
if(sortedFields[i].IsDefined(typeof(SyncedVar), true))
|
||||||
{
|
{
|
||||||
object[] syncedVarAttributes = sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true);
|
SyncedVar attribute = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]);
|
||||||
MethodInfo method = null;
|
|
||||||
if (!string.IsNullOrEmpty(((SyncedVar)syncedVarAttributes[0]).hook))
|
MethodInfo hookMethod = null;
|
||||||
{
|
|
||||||
method = GetType().GetMethod(((SyncedVar)syncedVarAttributes[0]).hook, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance);
|
if (!string.IsNullOrEmpty(attribute.hookMethodName))
|
||||||
break;
|
hookMethod = GetType().GetMethod(attribute.hookMethodName, BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.Instance);
|
||||||
}
|
|
||||||
FieldType fieldType = FieldTypeHelper.GetFieldType(sortedFields[i].FieldType);
|
FieldType fieldType = FieldTypeHelper.GetFieldType(sortedFields[i].FieldType);
|
||||||
if (fieldType != FieldType.Invalid)
|
if (fieldType != FieldType.Invalid)
|
||||||
{
|
{
|
||||||
syncedVarFields.Add(new SyncedVarField()
|
syncedVarFields.Add(new SyncedVarField()
|
||||||
{
|
{
|
||||||
Dirty = false,
|
Dirty = false,
|
||||||
Target = ((SyncedVar)sortedFields[i].GetCustomAttributes(typeof(SyncedVar), true)[0]).target,
|
Target = attribute.target,
|
||||||
FieldInfo = sortedFields[i],
|
FieldInfo = sortedFields[i],
|
||||||
FieldType = fieldType,
|
FieldType = fieldType,
|
||||||
FieldValue = sortedFields[i].GetValue(this),
|
FieldValue = sortedFields[i].GetValue(this),
|
||||||
HookMethod = method
|
HookMethod = hookMethod
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user