File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Assets/com.alelievr.NodeGraphProcessor/Runtime/Elements Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -169,8 +169,8 @@ PushDataDelegate CreatePushDataDelegateForEdge(SerializableEdge edge)
169
169
try
170
170
{
171
171
//Creation of the delegate to move the data from the input node to the output node:
172
- FieldInfo inputField = edge . inputNode . GetType ( ) . GetField ( edge . inputFieldName , BindingFlags . Public | BindingFlags . Instance ) ;
173
- FieldInfo outputField = edge . outputNode . GetType ( ) . GetField ( edge . outputFieldName , BindingFlags . Public | BindingFlags . Instance ) ;
172
+ FieldInfo inputField = edge . inputNode . GetType ( ) . GetField ( edge . inputFieldName , BindingFlags . Public | BindingFlags . NonPublic | BindingFlags . Instance ) ;
173
+ FieldInfo outputField = edge . outputNode . GetType ( ) . GetField ( edge . outputFieldName , BindingFlags . Public | BindingFlags . NonPublic | BindingFlags . Instance ) ;
174
174
Type inType , outType ;
175
175
176
176
#if DEBUG_LAMBDA
You can’t perform that action at this time.
0 commit comments