Browse Source

Command List now displays line numbers

master
Timothy Ng 9 years ago
parent
commit
3af0a9faa2
  1. 4
      Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs
  2. 9
      Assets/Tests/TestAssets/Animation.meta
  3. 2
      ProjectSettings/ProjectVersion.txt

4
Assets/Fungus/Flowchart/Editor/CommandListAdaptor.cs

@ -389,11 +389,11 @@ namespace Fungus
if (isComment)
{
GUI.Label(commandLabelRect, "", commandLabelStyle);
GUI.Label(commandLabelRect, command.commandIndex + ": ", commandLabelStyle);
}
else
{
GUI.Label(commandLabelRect, commandName, commandLabelStyle);
GUI.Label(commandLabelRect, command.commandIndex + ": " + commandName, commandLabelStyle);
}
if (command.executingIconTimer > Time.realtimeSinceStartup)

9
Assets/Tests/TestAssets/Animation.meta

@ -1,9 +0,0 @@
fileFormatVersion: 2
guid: f5528a125b1c64ce4b4ad7ae57de4989
folderAsset: yes
timeCreated: 1458814143
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

2
ProjectSettings/ProjectVersion.txt

@ -1,2 +1,2 @@
m_EditorVersion: 5.3.4f1
m_EditorVersion: 5.3.2f1
m_StandardAssetsVersion: 0

Loading…
Cancel
Save