From 65334a8054e3dc88f6e9974e95fe5a008608ddf2 Mon Sep 17 00:00:00 2001 From: shibbo Date: Wed, 8 Nov 2023 09:09:36 -0500 Subject: [PATCH] Add more link types to combobox --- Fushigi/ui/widgets/CourseScene.cs | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Fushigi/ui/widgets/CourseScene.cs b/Fushigi/ui/widgets/CourseScene.cs index a894e508..846fe442 100644 --- a/Fushigi/ui/widgets/CourseScene.cs +++ b/Fushigi/ui/widgets/CourseScene.cs @@ -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))