Browse Source

Fixed typo in BlockEditor.BlockField() #633

master
Chris Gregan 7 years ago
parent
commit
8eeb63ad99
  1. 2
      Assets/Fungus/Scripts/Editor/BlockEditor.cs

2
Assets/Fungus/Scripts/Editor/BlockEditor.cs

@ -607,7 +607,7 @@ namespace Fungus.EditorUtils
Block[] blocks = flowchart.GetComponents<Block>();
for (int i = 0; i < blocks.Length; ++i)
{
blockNames.Add(new GUIContent(blocks[i].name));
blockNames.Add(new GUIContent(blocks[i].BlockName));
if (block == blocks[i])
{

Loading…
Cancel
Save