Skip to content

Commit

Permalink
Run Python Code finished
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo committed Jan 29, 2020
1 parent ffc5863 commit 110395c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions basicnodes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2834,7 +2834,7 @@ def get_output_socket_varnames(self):

class NLParameterPythonModuleFunction(bpy.types.Node, NLParameterNode):
bl_idname = "NLParameterPythonModuleFunction"
bl_label = "Python Module Function"
bl_label = "Run Python Code"
nl_category = "Python"

def init(self, context):
Expand Down Expand Up @@ -4569,7 +4569,7 @@ class NLActionLoadVariable(bpy.types.Node, NLActionNode):

def init(self, context):
NLActionNode.init(self, context)
self.inputs.new(NLConditionSocket.bl_idname, 'Optional Condition')
self.inputs.new(NLPseudoConditionSocket.bl_idname, 'Condition')
self.inputs.new(NLQuotedStringFieldSocket.bl_idname, 'Name')
self.inputs[-1].value = 'var'
self.inputs.new(NLQuotedStringFieldSocket.bl_idname, 'Game Title')
Expand Down

0 comments on commit 110395c

Please sign in to comment.