Skip to content

Commit

Permalink
Add more link types to combobox
Browse files Browse the repository at this point in the history
  • Loading branch information
shibbo committed Nov 8, 2023
1 parent 952d03e commit 65334a8
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions Fushigi/ui/widgets/CourseScene.cs
Original file line number Diff line number Diff line change
Expand Up @@ -395,13 +395,9 @@ private void SelectionParameterPanel()
ImGui.Text("Links");
ImGui.Separator();

/*if (ImGui.Button("Add Link"))
{
activeViewport.mIsLinkNew = true;
activeViewport.mEditorState = LevelViewport.EditorState.SelectingLinkDest;
}*/

string[] linkTypes = new string[] { "BasicSignal", "Create", "Delete", "CreateRelativePos", "CullingReference", "NextGoToParallel", "Bind", };
string[] linkTypes = new string[] { "BasicSignal", "Create", "Delete", "CreateRelativePos",
"CullingReference", "NextGoToParallel", "Bind", "NoticeDeath",
"Contents", "PopUp", };
int idx = 0;

if (ImGui.Combo("Add Link", ref idx, linkTypes, linkTypes.Length))
Expand Down

0 comments on commit 65334a8

Please sign in to comment.