We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3be7ded commit 95f8ceaCopy full SHA for 95f8cea
Assets/JCSUnity/Scripts/Utilities/JCS_Utility.cs
@@ -937,5 +937,15 @@ public static bool IsArrayEmpty(string[] list)
937
938
return true;
939
}
940
+
941
+ /// <summary>
942
+ /// Get the current selected value of the Dropdown object.
943
+ /// </summary>
944
+ /// <param name="dd"> drop down object. </param>
945
+ /// <returns> current selected text value. </returns>
946
+ public static string GetSelectedValue(Dropdown dd)
947
+ {
948
+ return dd.options[dd.value].text;
949
+ }
950
951
Assets/StreamingAssets/build_info.txt
@@ -1 +1 @@
1
-Build from DESKTOP-5QUO247 at 7/9/2018 11:57:09 PM
+Build from DESKTOP-5QUO247 at 7/10/2018 12:27:41 AM
0 commit comments