text
stringlengths
7
35.3M
id
stringlengths
11
185
metadata
dict
__index_level_0__
int64
0
2.14k
namespace UIWidgets { using System; using UnityEngine.Events; /// <summary> /// Calendar event. /// </summary> [Serializable] public class CalendarDateEvent : UnityEvent<DateTime> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Calendar/Events/CalendarDateEvent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Calendar/Events/CalendarDateEvent.cs", "repo_id": "jynew", "token_count": 70 }
1,410
namespace UIWidgets { using System; /// <summary> /// TimeScroller with only two AMPM values. /// </summary> [Obsolete("Replaced with TimeScroller.SingleAMPM property.")] public class TimeScrollerAMPM : TimeScroller { /// <inheritdoc/> public override void Init() { base.Init(); SingleAMPM = true; ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Calendar/TimeScrollerAMPM.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Calendar/TimeScrollerAMPM.cs", "repo_id": "jynew", "token_count": 122 }
1,411
namespace UIWidgets { using System; using UnityEngine; using UnityEngine.Events; /// <summary> /// CircularSliderFloat. /// </summary> public class CircularSliderFloat : CircularSliderBase<float> { /// <summary> /// Value changed event. /// </summary> [Serializable] public class ValueChanged : Unity...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/CircularSlider/CircularSliderFloat.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/CircularSlider/CircularSliderFloat.cs", "repo_id": "jynew", "token_count": 538 }
1,412
fileFormatVersion: 2 guid: 4af3b5167c76e0a43947b45de661ea78 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/CollectionsUtilities/IObservableList.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/CollectionsUtilities/IObservableList.cs.meta", "repo_id": "jynew", "token_count": 70 }
1,413
namespace UIWidgets { using UIWidgets.Styles; using UnityEngine; using UnityEngine.UI; /// <summary> /// Color picker Alpha slider block. /// </summary> public class ColorPickerABlock : MonoBehaviour { [SerializeField] Slider aSlider; /// <summary> /// Gets or sets Alpha slider. /// </summary> //...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/ColorPickerABlock.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/ColorPickerABlock.cs", "repo_id": "jynew", "token_count": 2908 }
1,414
namespace UIWidgets { using UIWidgets.Styles; using UnityEngine; using UnityEngine.UI; /// <summary> /// Color picker RGB block. /// </summary> public class ColorPickerRGBBlock : MonoBehaviour { [SerializeField] Slider rSlider; /// <summary> /// Gets or sets the Red slider. /// </summary> /// <val...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/ColorPickerRGBBlock.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/ColorPickerRGBBlock.cs", "repo_id": "jynew", "token_count": 6066 }
1,415
fileFormatVersion: 2 guid: 46eb172ff9f12fd45b234ced15047005 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/Events/ColorRGBChangedEvent.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/Events/ColorRGBChangedEvent.cs.meta", "repo_id": "jynew", "token_count": 66 }
1,416
namespace UIWidgets { /// <summary> /// Combobox. /// </summary> public class ComboboxString : ComboboxCustom<ListViewString, ListViewStringItemComponent, string> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Combobox/ComboboxString.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Combobox/ComboboxString.cs", "repo_id": "jynew", "token_count": 64 }
1,417
fileFormatVersion: 2 guid: f9075c87b19d377449fdea58cef0dc06 timeCreated: 1620128637 licenseType: Store MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Connector/LineBuilder.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Connector/LineBuilder.cs.meta", "repo_id": "jynew", "token_count": 107 }
1,418
namespace UIWidgets.Menu { /// <summary> /// HotKeyCode extensions. /// </summary> public static class HotKeyCodeExtensions { /// <summary> /// Convert HotKeyCode to human-readable string. /// </summary> /// <param name="code">Code.</param> /// <returns>Human-readable string.</returns> public static s...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ContextMenu/HotKeyCodeExtensions.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ContextMenu/HotKeyCodeExtensions.cs", "repo_id": "jynew", "token_count": 782 }
1,419
namespace UIWidgets.Menu { using UnityEngine.Events; /// <summary> /// Menu item over event. /// First argument is index of the menu item. /// Second argument is true if pointer event; otherwise false. /// </summary> [System.Serializable] public class MenuItemOverEvent : UnityEvent<int, bool> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ContextMenu/MenuItemOverEvent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ContextMenu/MenuItemOverEvent.cs", "repo_id": "jynew", "token_count": 99 }
1,420
namespace UIWidgets { using UnityEngine.EventSystems; /// <summary> /// Base class for the UIWidgets UIBehaviour components. /// </summary> public abstract class UIWidgetsBehaviour : UIBehaviour { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Core/UIWidgetsBehaviour.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Core/UIWidgetsBehaviour.cs", "repo_id": "jynew", "token_count": 72 }
1,421
namespace UIWidgets { using System; /// <summary> /// Button configuration. /// </summary> /// <typeparam name="TSender">Type of the sender.</typeparam> public class ButtonConfiguration<TSender> { /// <summary> /// Label. /// </summary> public string Label; Func<TSender, int, bool> actionSender; ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/ButtonConfiguration.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/ButtonConfiguration.cs", "repo_id": "jynew", "token_count": 1255 }
1,422
namespace UIWidgets { using System; using System.Collections.Generic; using System.Collections.ObjectModel; using UIWidgets.Extensions; using UIWidgets.Styles; using UnityEngine; using UnityEngine.UI; /// <summary> /// Class for the buttons instances. /// </summary> /// <typeparam name="TOwner">Type of the...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/DialogButtonsPoolCustom.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/DialogButtonsPoolCustom.cs", "repo_id": "jynew", "token_count": 2498 }
1,423
namespace UIWidgets { using UnityEngine; /// <summary> /// PickerIcons. /// </summary> public class PickerIcons : PickerListViewCustom<ListViewIcons, ListViewIconsItemComponent, ListViewIconsItemDescription, PickerIcons> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/PickerIcons.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/PickerIcons.cs", "repo_id": "jynew", "token_count": 84 }
1,424
namespace UIWidgets { using System; using UnityEngine.EventSystems; /// <summary> /// Auto scroll interface. /// Used by drag script to automatically scroll containers. /// </summary> public interface IAutoScroll { /// <summary> /// Start scroll when pointer is near ScrollRect border. /// </summary> /...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/IAutoScroll.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/IAutoScroll.cs", "repo_id": "jynew", "token_count": 204 }
1,425
namespace UIWidgets { using System.Collections.Generic; using UIWidgets; using UnityEngine; using UnityEngine.EventSystems; /// <summary> /// Drag support of selected items for the ListViewIcons. /// </summary> [RequireComponent(typeof(ListViewIcons))] public class ListViewIconsMultipleDragSupport : DragSupp...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/ListViewIconsMultipleDragSupport.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/ListViewIconsMultipleDragSupport.cs", "repo_id": "jynew", "token_count": 534 }
1,426
namespace UIWidgets { using UnityEngine; using UnityEngine.EventSystems; /// <summary> /// TreeView drop support. /// Receive drops from TreeView and ListViewIcons. /// </summary> [RequireComponent(typeof(TreeView))] public class TreeViewDropSupport : TreeViewCustomDropSupport<TreeView, TreeViewComponent, Tre...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/TreeViewDropSupport.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/TreeViewDropSupport.cs", "repo_id": "jynew", "token_count": 713 }
1,427
fileFormatVersion: 2 guid: 6e640caff8d340f4badd25887e0bd660 labels: - DraggableHandle - Uiwidgets MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Draggable/DraggableHandle.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Draggable/DraggableHandle.cs.meta", "repo_id": "jynew", "token_count": 85 }
1,428
namespace EasyLayoutNS { using System.Collections.Generic; using EasyLayoutNS.Extensions; using UnityEngine; /// <summary> /// Base class for EasyLayout groups. /// </summary> public abstract class EasyLayoutBaseType { /// <summary> /// Element changed delegate. /// </summary> /// <param name="element...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutBaseType.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutBaseType.cs", "repo_id": "jynew", "token_count": 10934 }
1,429
namespace EasyLayoutNS { using UIWidgets; using UnityEngine; /// <summary> /// Flexbox-like layout group. /// </summary> public class EasyLayoutFlex : EasyLayoutFlexOrStaggered { /// <summary> /// Settings. /// </summary> protected EasyLayoutFlexSettings Settings; /// <inheritdoc/> public override...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutFlex.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutFlex.cs", "repo_id": "jynew", "token_count": 2043 }
1,430
namespace EasyLayoutNS { using System.Collections.Generic; using UnityEngine; /// <summary> /// EasyLayout utilities. /// </summary> public static class EasyLayoutUtilities { /// <summary> /// Convert list to string. /// </summary> /// <typeparam name="T">Value type.</typeparam> /// <param name="valu...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutUtilities.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutUtilities.cs", "repo_id": "jynew", "token_count": 1160 }
1,431
namespace EasyLayoutNS { using System.Collections.Generic; /// <summary> /// Sizes info. /// </summary> public struct SizesInfo : System.IEquatable<SizesInfo> { /// <summary> /// The summary minimum size. /// </summary> public float TotalMin; /// <summary> /// The summary preferred size. /// </su...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/SizesInfo.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/SizesInfo.cs", "repo_id": "jynew", "token_count": 2009 }
1,432
namespace UIWidgets { using UnityEngine; /// <summary> /// Grid drawer. /// </summary> [RequireComponent(typeof(SnapGridBase))] [AddComponentMenu("UI/New UI Widgets/Effects/Snap Grid Drawer")] public class SnapGridDrawer : LinesDrawerBase { /// <summary> /// Grid. /// </summary> protected SnapGridBase ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Effects/SnapGridDrawer.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Effects/SnapGridDrawer.cs", "repo_id": "jynew", "token_count": 655 }
1,433
namespace UIWidgets { using System; using System.Collections.Generic; using System.IO; using UIWidgets.Styles; using UnityEngine; /// <summary> /// DirectoryTreeView /// </summary> public class DirectoryTreeView : TreeViewCustom<DirectoryTreeViewComponent, FileSystemEntry> { /// <summary> /// Path separ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/IO/DirectoryTreeView.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/IO/DirectoryTreeView.cs", "repo_id": "jynew", "token_count": 5493 }
1,434
namespace UIWidgets { using UnityEngine; using UnityEngine.UI; /// <summary> /// FileListViewComponentBase. /// </summary> public class FileListViewComponentBase : ListViewItem, IViewData<FileSystemEntry> { /// <summary> /// Name. /// </summary> [SerializeField] protected TextAdapter NameAdapter; ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/IO/FileListViewComponentBase.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/IO/FileListViewComponentBase.cs", "repo_id": "jynew", "token_count": 547 }
1,435
fileFormatVersion: 2 guid: fa70a8567d066b24489b19de1af13bdd folderAsset: yes DefaultImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/InputField.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/InputField.meta", "repo_id": "jynew", "token_count": 45 }
1,436
fileFormatVersion: 2 guid: 0acd965758c514745bc5c440540120a1 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/InputField/InputFieldNull.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/InputField/InputFieldNull.cs.meta", "repo_id": "jynew", "token_count": 70 }
1,437
fileFormatVersion: 2 guid: 5b7988100aee0ef4b9c173a7c1e34725 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/DefaultSelector.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/DefaultSelector.cs.meta", "repo_id": "jynew", "token_count": 96 }
1,438
namespace UIWidgets { using System; using UnityEngine.Events; using UnityEngine.EventSystems; /// <summary> /// ListViewItem event for the BaseEventData. /// </summary> [Serializable] public class ListViewItemBaseEvent : UnityEvent<int, ListViewItem, BaseEventData> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Events/ListViewItemBaseEvent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Events/ListViewItemBaseEvent.cs", "repo_id": "jynew", "token_count": 96 }
1,439
namespace UIWidgets { using System; using UnityEngine.Events; /// <summary> /// List view item select event. /// </summary> [Serializable] public class ListViewItemSelect : UnityEvent<ListViewItem> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Events/ListViewItemSelect.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Events/ListViewItemSelect.cs", "repo_id": "jynew", "token_count": 75 }
1,440
fileFormatVersion: 2 guid: eb279e0ba42acf04d85a29639dcd5320 folderAsset: yes DefaultImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewColors.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewColors.meta", "repo_id": "jynew", "token_count": 44 }
1,441
namespace UIWidgets { using System; using System.Collections.Generic; using UIWidgets.l10n; /// <summary> /// ListViewEnum. /// </summary> public class ListViewEnum : ListViewCustom<ListViewEnumComponent, ListViewEnum.Item> { /// <summary> /// Item. /// </summary> public struct Item { /// <summary...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewEnum/ListViewEnum.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewEnum/ListViewEnum.cs", "repo_id": "jynew", "token_count": 588 }
1,442
namespace UIWidgets { using UnityEngine; /// <summary> /// ListView with int values. /// </summary> public class ListViewInt : ListViewCustom<ListViewIntComponentBase, int> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewInt/ListViewInt.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewInt/ListViewInt.cs", "repo_id": "jynew", "token_count": 66 }
1,443
fileFormatVersion: 2 guid: adbe1e0787e12b24eb3b1a46ce3db587 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewString/ListViewHeight.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewString/ListViewHeight.cs.meta", "repo_id": "jynew", "token_count": 71 }
1,444
namespace UIWidgets { using System; using UIWidgets.Styles; using UnityEngine; /// <content> /// Base class for custom ListViews. /// </content> public partial class ListViewCustom<TItemView, TItem> : ListViewCustomBase, IStylable where TItemView : ListViewItem { /// <summary> /// ListView renderer with...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewType/ListViewTypeRectangle.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewType/ListViewTypeRectangle.cs", "repo_id": "jynew", "token_count": 3683 }
1,445
fileFormatVersion: 2 guid: 5690e85b674900047867f55967d9d851 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Obsolete/IItemWidth.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Obsolete/IItemWidth.cs.meta", "repo_id": "jynew", "token_count": 69 }
1,446
fileFormatVersion: 2 guid: 5caa8f47f98254a498eefcb79b472f15 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/StandardLayoutBridge.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/StandardLayoutBridge.cs.meta", "repo_id": "jynew", "token_count": 70 }
1,447
namespace UIWidgets { using System; /// <summary> /// Notification button info. /// </summary> public class NotificationButton : ButtonConfiguration<NotificationBase> { /// <summary> /// Initializes a new instance of the <see cref="NotificationButton"/> class. /// </summary> public NotificationButton() ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Notify/NotificationButton.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Notify/NotificationButton.cs", "repo_id": "jynew", "token_count": 589 }
1,448
namespace UIWidgets { using System; using System.Collections; using UIWidgets.Attributes; using UnityEngine; using UnityEngine.Serialization; using UnityEngine.UI; /// <summary> /// Progressbar. /// <example> /// // Example of using Progressbar for show instantiating progress. /// <code> /// var bar = Get...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Progressbar/Progressbar.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Progressbar/Progressbar.cs", "repo_id": "jynew", "token_count": 4465 }
1,449
namespace UIWidgets { using UnityEngine; /// <summary> /// Scripts templates. /// </summary> public class ScriptsTemplates : ScriptableObject { #if UNITY_EDITOR static ScriptsTemplates instance; /// <summary> /// Instance. /// </summary> public static ScriptsTemplates Instance { get { if ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/References/ScriptsTemplates.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/References/ScriptsTemplates.cs", "repo_id": "jynew", "token_count": 1474 }
1,450
namespace UIWidgets { using System; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.Serialization; using UnityEngine.UI; /// <summary> /// Splitter type. /// </summary> public enum SplitterType { /// <summary> /// Horizontal. /// </summary> Hor...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Resizable/Splitter.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Resizable/Splitter.cs", "repo_id": "jynew", "token_count": 6638 }
1,451
namespace UIWidgets { using System; using UnityEngine; /// <summary> /// ScrollBlock item. /// </summary> public class ScrollBlockItem : MonoBehaviour, IMovableToCache { /// <summary> /// Index of the item. /// </summary> [NonSerialized] public int Index; /// <summary> /// Text adapter. /// </...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollBlock/ScrollBlockItem.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollBlock/ScrollBlockItem.cs", "repo_id": "jynew", "token_count": 260 }
1,452
fileFormatVersion: 2 guid: 3b6706984303b174fabd82826eebbac7 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/Events.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/Events.meta", "repo_id": "jynew", "token_count": 67 }
1,453
fileFormatVersion: 2 guid: f113cda70e7dd9843b94c547426df9d2 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/ScrollRectDragSensitivity.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/ScrollRectDragSensitivity.cs.meta", "repo_id": "jynew", "token_count": 95 }
1,454
fileFormatVersion: 2 guid: 18e3521600fa58e4784694d51826cba1 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/ScrollbarMinSize.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/ScrollbarMinSize.cs.meta", "repo_id": "jynew", "token_count": 68 }
1,455
fileFormatVersion: 2 guid: 6afb3a06047cde64d9019d5d613ee2ae timeCreated: 1623153826 licenseType: Store MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/SliderScale/CenteredSliderScale.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/SliderScale/CenteredSliderScale.cs.meta", "repo_id": "jynew", "token_count": 109 }
1,456
namespace UIWidgets { using System; using UnityEngine; /// <summary> /// Base class for the SnapGrid. /// </summary> public abstract partial class SnapGridBase : UIBehaviourConditional { /// <summary> /// Line at Y axis. /// </summary> [Serializable] public struct LineY { [SerializeField] flo...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/SnapGrid/SnapGridBase.LineY.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/SnapGrid/SnapGridBase.LineY.cs", "repo_id": "jynew", "token_count": 602 }
1,457
namespace UIWidgets.Styles { using System; using UnityEngine; using UnityEngine.Serialization; /// <summary> /// Style for the combobox. /// </summary> [Serializable] public class StyleCombobox : IStyleDefaultValues { /// <summary> /// Style for the background. /// </summary> [SerializeField] publi...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Collections/StyleCombobox.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Collections/StyleCombobox.cs", "repo_id": "jynew", "token_count": 807 }
1,458
namespace UIWidgets.Styles { using System; using UnityEngine; /// <summary> /// Style for the TreeView. /// </summary> [Serializable] public class StyleTreeView : IStyleDefaultValues { /// <summary> /// The padding per level. /// </summary> [SerializeField] public int PaddingPerLevel = 30; /// <s...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Collections/StyleTreeView.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Collections/StyleTreeView.cs", "repo_id": "jynew", "token_count": 386 }
1,459
namespace UIWidgets.Styles { using System; /// <summary> /// Style for the dialog. /// </summary> [Serializable] public class StyleDialog : IStyleDefaultValues { /// <summary> /// The background. /// </summary> public StyleImage Background; /// <summary> /// The title. /// </summary> public St...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Dialogs/StyleDialog.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Dialogs/StyleDialog.cs", "repo_id": "jynew", "token_count": 349 }
1,460
fileFormatVersion: 2 guid: 2483f16ccad27d64f8474c0f973c6a3c MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Fast/StyleFast.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Fast/StyleFast.cs.meta", "repo_id": "jynew", "token_count": 73 }
1,461
namespace UIWidgets.Styles { using System; using UnityEngine; /// <summary> /// Style for the calendar. /// </summary> [Serializable] public class StyleCalendar : IStyleDefaultValues { /// <summary> /// Style for the current date. /// </summary> [SerializeField] public StyleText CurrentDate; /// ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleCalendar.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleCalendar.cs", "repo_id": "jynew", "token_count": 817 }
1,462
namespace UIWidgets.Styles { using System; using UnityEngine; /// <summary> /// Style for the spinner. /// </summary> [Serializable] public class StyleSpinner : IStyleDefaultValues { /// <summary> /// Style for the background. /// </summary> [SerializeField] public StyleImage Background; /// <sum...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleSpinner.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleSpinner.cs", "repo_id": "jynew", "token_count": 425 }
1,463
namespace UIWidgets.Styles { using System; using UnityEngine; /// <summary> /// Style for the time widget. /// </summary> [Serializable] public class StyleTime : IStyleDefaultValues { /// <summary> /// Style for the input background. /// </summary> [SerializeField] public StyleImage InputBackground;...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleTime.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleTime.cs", "repo_id": "jynew", "token_count": 483 }
1,464
namespace UIWidgets.Styles { using System; using UnityEngine; using UnityEngine.UI; /// <summary> /// Style for the image. /// </summary> [Serializable] public class StyleImage : IStyleDefaultValues { /// <summary> /// The sprite. /// </summary> [SerializeField] public Sprite Sprite; /// <summar...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Unity/StyleImage.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Unity/StyleImage.cs", "repo_id": "jynew", "token_count": 1715 }
1,465
namespace UIWidgets.Styles { using UnityEngine; using UnityEngine.UI; /// <summary> /// Style support for the Unity button. /// </summary> [RequireComponent(typeof(Button))] public class StyleSupportUnityButton : MonoBehaviour, IStylable { /// <summary> /// Background. /// </summary> [SerializeField] ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Unity/StyleSupportUnityButton.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Unity/StyleSupportUnityButton.cs", "repo_id": "jynew", "token_count": 481 }
1,466
namespace UIWidgets { /// <summary> /// Alias for TableHeader. /// </summary> [System.Obsolete("Renamed to TableHeader")] public class ResizableHeader : TableHeader { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Table/ResizableHeader.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Table/ResizableHeader.cs", "repo_id": "jynew", "token_count": 62 }
1,467
fileFormatVersion: 2 guid: 2a3b51fb8d14690438c2480dacf09801 folderAsset: yes DefaultImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Tabs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Tabs.meta", "repo_id": "jynew", "token_count": 46 }
1,468
fileFormatVersion: 2 guid: 3c1d180f1ac0a6741a10807a2a14d7a6 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Tabs/TabIconButton.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Tabs/TabIconButton.cs.meta", "repo_id": "jynew", "token_count": 74 }
1,469
fileFormatVersion: 2 guid: 7118e4ca5f5c9784ca7cf665b0520216 labels: - Templates - Uiwidgets MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Templates.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Templates.cs.meta", "repo_id": "jynew", "token_count": 84 }
1,470
fileFormatVersion: 2 guid: f39b2cfbc14071948ab42526018a05a6 folderAsset: yes timeCreated: 1520699854 licenseType: Store DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CenteredSlider/Horizontal.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CenteredSlider/Horizontal.meta", "repo_id": "jynew", "token_count": 81 }
1,471
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Setters; using UnityEngine; /// <summary> /// Set the ValueMax of a CenteredSliderVertical depending on the System.Int32 data value. /// </summary> [AddComponentMenu("Data Bind/New UI Widgets/Setters/[DB] Centered...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CenteredSlider/Vertical/CenteredSliderVerticalValueMaxSetter.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CenteredSlider/Vertical/CenteredSliderVerticalValueMaxSetter.cs", "repo_id": "jynew", "token_count": 219 }
1,472
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Setters; using UnityEngine; /// <summary> /// Set the MaxValue of a CircularSliderFloat depending on the System.Single data value. /// </summary> [AddComponentMenu("Data Bind/New UI Widgets/Setters/[DB] CircularSl...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CircularSlider/Float/CircularSliderFloatMaxValueSetter.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CircularSlider/Float/CircularSliderFloatMaxValueSetter.cs", "repo_id": "jynew", "token_count": 217 }
1,473
fileFormatVersion: 2 guid: 804201e1162f8ad47af490b572e5f4b1 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CircularSlider/Int/CircularSliderMaxValueSetter.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CircularSlider/Int/CircularSliderMaxValueSetter.cs.meta", "repo_id": "jynew", "token_count": 95 }
1,474
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Providers.Getters; using UnityEngine; /// <summary> /// Provides the Color of an ColorPicker. /// </summary> [AddComponentMenu("Data Bind/New UI Widgets/Getters/[DB] ColorPicker Color Provider")] public class Col...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/ColorPicker/ColorPickerColorProvider.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/ColorPicker/ColorPickerColorProvider.cs", "repo_id": "jynew", "token_count": 337 }
1,475
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Providers.Getters; using UnityEngine; /// <summary> /// Provides the SelectedNodes of an DirectoryTreeView. /// </summary> [AddComponentMenu("Data Bind/New UI Widgets/Getters/[DB] DirectoryTreeView SelectedNodes P...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/IO/DirectoryTreeView/DirectoryTreeViewSelectedNodesProvider.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/IO/DirectoryTreeView/DirectoryTreeViewSelectedNodesProvider.cs", "repo_id": "jynew", "token_count": 500 }
1,476
fileFormatVersion: 2 guid: 1ab95949c03b2ee43b48ec5de713dafe timeCreated: 1520697793 licenseType: Store MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/IO/FileListView/FileListViewSelectedItemsProvider.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/IO/FileListView/FileListViewSelectedItemsProvider.cs.meta", "repo_id": "jynew", "token_count": 108 }
1,477
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Observers; /// <summary> /// Observes value changes of the SelectedItem of an ListViewHeight. /// </summary> public class ListViewHeightSelectedItemObserver : ComponentDataObserver<UIWidgets.ListViewHeight, string>...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/ListView/ListViewHeight/ListViewHeightSelectedItemObserver.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/ListView/ListViewHeight/ListViewHeightSelectedItemObserver.cs", "repo_id": "jynew", "token_count": 397 }
1,478
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Setters; using UnityEngine; /// <summary> /// Set the Step of a RangeSlider depending on the System.Int32 data value. /// </summary> [AddComponentMenu("Data Bind/New UI Widgets/Setters/[DB] RangeSlider Step Setter...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/RangeSlider/Int/RangeSliderStepSetter.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/RangeSlider/Int/RangeSliderStepSetter.cs", "repo_id": "jynew", "token_count": 200 }
1,479
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Synchronizers; using UnityEngine; /// <summary> /// Synchronizer for the ValueMin of a RangeSlider. /// </summary> public class RangeSliderValueMinSynchronizer : ComponentDataSynchronizer<UIWidgets.RangeSlider, in...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/RangeSlider/Int/RangeSliderValueMinSynchronizer.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/RangeSlider/Int/RangeSliderValueMinSynchronizer.cs", "repo_id": "jynew", "token_count": 419 }
1,480
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Synchronizers; using UnityEngine; /// <summary> /// Synchronizer for the Value of a SpinnerFloat. /// </summary> public class SpinnerFloatValueSynchronizer : ComponentDataSynchronizer<UIWidgets.SpinnerFloat, float...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/Spinner/Float/SpinnerFloatValueSynchronizer.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/Spinner/Float/SpinnerFloatValueSynchronizer.cs", "repo_id": "jynew", "token_count": 417 }
1,481
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Observers; /// <summary> /// Observes value changes of the SelectedNode of an TreeView. /// </summary> public class TreeViewSelectedNodeObserver : ComponentDataObserver<UIWidgets.TreeView, UIWidgets.TreeNode<UIWidg...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/TreeView/TreeViewSelectedNodeObserver.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/TreeView/TreeViewSelectedNodeObserver.cs", "repo_id": "jynew", "token_count": 435 }
1,482
fileFormatVersion: 2 guid: 8be3e66b21a4bf8489e41fda2bda8781 labels: - UiwidgetsI2LocalizationRecompilationStatus DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/I2LocalizationSupport/recompilation.status.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/I2LocalizationSupport/recompilation.status.meta", "repo_id": "jynew", "token_count": 83 }
1,483
fileFormatVersion: 2 guid: 2cab52808762b9943ba8f1988cf5830b MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/Calendar/CalendarTMPro.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/Calendar/CalendarTMPro.cs.meta", "repo_id": "jynew", "token_count": 68 }
1,484
#if UIWIDGETS_TMPRO_SUPPORT namespace UIWidgets.TMProSupport { using System; using TMPro; using UIWidgets; using UnityEngine; /// <summary> /// Dialog info. /// </summary> public class DialogInfoTMPro : DialogInfoBase, IUpgradeable { /// <summary> /// The title. /// </summary> [SerializeField] [Hide...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/Dialog/DialogInfoTMPro.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/Dialog/DialogInfoTMPro.cs", "repo_id": "jynew", "token_count": 389 }
1,485
#if UIWIDGETS_TMPRO_SUPPORT && (UNITY_5_2 || UNITY_5_3 || UNITY_5_3_OR_NEWER) namespace UIWidgets { using TMPro; using UIWidgets.Styles; using UnityEngine; using UnityEngine.Events; using UnityEngine.UI; /// <summary> /// InputField with exposed functions to validate input. /// </summary> public class InputFi...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/InputField/InputFieldTMProExtended.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/InputField/InputFieldTMProExtended.cs", "repo_id": "jynew", "token_count": 1922 }
1,486
#if UIWIDGETS_TMPRO_SUPPORT namespace UIWidgets.TMProSupport { using TMPro; using UIWidgets; using UnityEngine; /// <summary> /// Progressbar with TextMeshPro support. /// </summary> public class ProgressbarTMPro : Progressbar { /// <summary> /// The empty bar text. /// </summary> [SerializeField] [H...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/Progressbar/ProgressbarTMPro.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/Progressbar/ProgressbarTMPro.cs", "repo_id": "jynew", "token_count": 349 }
1,487
fileFormatVersion: 2 guid: 803f0e6a989860548b8a9bce711df828 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/Tabs/TabIconDefaultButtonTMPro.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/TMProSupport/Scripts/Tabs/TabIconDefaultButtonTMPro.cs.meta", "repo_id": "jynew", "token_count": 73 }
1,488
namespace UIWidgets { /// <summary> /// Base class for TileView's with items with different widths or heights. /// </summary> /// <typeparam name="TItemView">Component class.</typeparam> /// <typeparam name="TItem">Item class.</typeparam> public class TileViewCustomSize<TItemView, TItem> : ListViewCustom<TItemVi...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TileView/TileViewCustomSize.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TileView/TileViewCustomSize.cs", "repo_id": "jynew", "token_count": 265 }
1,489
fileFormatVersion: 2 guid: a2fff0e0a71e8f248ae85d856be5f28a MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TracksView/Layouts/TrackLayoutAnyLineCompact.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TracksView/Layouts/TrackLayoutAnyLineCompact.cs.meta", "repo_id": "jynew", "token_count": 73 }
1,490
fileFormatVersion: 2 guid: 341b0284bd55c104da7c0ead9d5a7f11 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TracksView/TrackDataViewBase.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TracksView/TrackDataViewBase.cs.meta", "repo_id": "jynew", "token_count": 71 }
1,491
namespace UIWidgets { using UIWidgets.Styles; using UnityEngine; using UnityEngine.UI; /// <summary> /// TreeGraph component. /// </summary> /// <typeparam name="T">Node type.</typeparam> [RequireComponent(typeof(MultipleConnector))] public abstract class TreeGraphComponent<T> : MonoBehaviour, IStylable { ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TreeGraph/TreeGraphComponent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TreeGraph/TreeGraphComponent.cs", "repo_id": "jynew", "token_count": 2127 }
1,492
namespace UIWidgets { using System; using UnityEngine; /// <summary> /// Serialized TreeNode. /// </summary> /// <typeparam name="TItem">Type of node item.</typeparam> [Serializable] public class TreeNodeSerialized<TItem> { /// <summary> /// The pause observation. /// </summary> [SerializeField] pu...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TreeView/TreeNodeSerialized.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TreeView/TreeNodeSerialized.cs", "repo_id": "jynew", "token_count": 563 }
1,493
namespace UIWidgets { using System; using System.ComponentModel; using UnityEngine; using UnityEngine.Serialization; /// <summary> /// Tree view item. /// </summary> [Serializable] public class TreeViewItem : IObservable, INotifyPropertyChanged { /// <summary> /// Occurs when a property value changes. ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TreeView/TreeViewItem.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/TreeView/TreeViewItem.cs", "repo_id": "jynew", "token_count": 1300 }
1,494
namespace UIWidgets { using System; using System.Collections; using UnityEngine; using UnityEngine.UI; /// <summary> /// Animations. /// </summary> public static class Animations { /// <summary> /// Run animation with animation curve value. /// </summary> /// <param name="curve">Animation curve.</par...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Utilities/Animations.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Utilities/Animations.cs", "repo_id": "jynew", "token_count": 6480 }
1,495
fileFormatVersion: 2 guid: 6233af5726a7ad24d87a9e8730ea93c9 folderAsset: yes DefaultImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Utilities/Events.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Utilities/Events.meta", "repo_id": "jynew", "token_count": 46 }
1,496
fileFormatVersion: 2 guid: c246b40f2b6bead4a959688fab2b849f labels: - Uiwidgets - SlideUp MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Utilities/SlideUp.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Utilities/SlideUp.cs.meta", "repo_id": "jynew", "token_count": 86 }
1,497
fileFormatVersion: 2 guid: 1bac8d7826738b14788d67f377f42e59 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Utilities/UtilitiesRectTransform.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Utilities/UtilitiesRectTransform.cs.meta", "repo_id": "jynew", "token_count": 94 }
1,498
fileFormatVersion: 2 guid: 6f4bf31e527468f43a55e4865c0d7c83 timeCreated: 1520693576 licenseType: Store MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/WidgetGeneration/DataBindSupport/DataBindGenerator.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/WidgetGeneration/DataBindSupport/DataBindGenerator.cs.meta", "repo_id": "jynew", "token_count": 111 }
1,499
fileFormatVersion: 2 guid: 3a68faabbc46cd744bc7550c3a52517d MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/WidgetGeneration/PrefabsGeneratorStarter.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/WidgetGeneration/PrefabsGeneratorStarter.cs.meta", "repo_id": "jynew", "token_count": 94 }
1,500
// Upgrade NOTE: replaced 'mul(UNITY_MATRIX_MVP,*)' with 'UnityObjectToClipPos(*)' // Ring shader. // Should be used only "_LineColor", "_Thickness", "_ResolutionX", "_ResolutionY" and "_Transparent" shader properties, // other properties should have the default value to be compatible with Unity UI. Shader "Custom/Ne...
jynew/jyx2/Assets/Plugins/New UI Widgets/Shaders/UILinesDrawer.shader/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Shaders/UILinesDrawer.shader", "repo_id": "jynew", "token_count": 2302 }
1,501
fileFormatVersion: 2 guid: 9431ba5b04ae3934a8cde0abd640ad65 labels: - Input - Joysticks - Controllers - Rewired - Hotplugging - Keyboard - Mouse - Touch - InputManager - Control - Gamepad - Controller - Joystick - Xbox360 - XInput - DirectInput NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/Rewired/DevTools/UnityJoystickElementIdentifier.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/Rewired/DevTools/UnityJoystickElementIdentifier.prefab.meta", "repo_id": "jynew", "token_count": 104 }
1,502
fileFormatVersion: 2 guid: 3d1f27388a3b6274aa8eb7c08b56decf timeCreated: 1533008719 licenseType: Store DefaultImporter: userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/Rewired/Internal/Assets/Integration/Cinemachine.zip.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/Rewired/Internal/Assets/Integration/Cinemachine.zip.meta", "repo_id": "jynew", "token_count": 73 }
1,503
fileFormatVersion: 2 guid: 2a2c3e7461e6189499e5df5d735bf541 DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/Rewired/Internal/Assets/Integration/UniversalFightingEngine2.zip.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/Rewired/Internal/Assets/Integration/UniversalFightingEngine2.zip.meta", "repo_id": "jynew", "token_count": 67 }
1,504
fileFormatVersion: 2 guid: 70783f06a0182a643bde17f845c1b4b3 NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/3DconnexionKMJEmulator.asset.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/3DconnexionKMJEmulator.asset.meta", "repo_id": "jynew", "token_count": 44 }
1,505
fileFormatVersion: 2 guid: 2de1da9406378ec4895e7e41ba110568 NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/8BitdoNES30Pro.asset.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/8BitdoNES30Pro.asset.meta", "repo_id": "jynew", "token_count": 39 }
1,506
fileFormatVersion: 2 guid: 78fc0032fa6200749ab3b81dbd732c1f timeCreated: 1490575623 licenseType: Store NativeFormatImporter: userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/CHFlightStickPro.asset.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/CHFlightStickPro.asset.meta", "repo_id": "jynew", "token_count": 71 }
1,507
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 323110133, guid: 09c9b883b79ef864a99683bb36c5776d, type: 3} m_N...
jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/LogitechDrivingForceGT.asset/0
{ "file_path": "jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/LogitechDrivingForceGT.asset", "repo_id": "jynew", "token_count": 37103 }
1,508
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!114 &11400000 MonoBehaviour: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 0} m_Enabled: 1 m_EditorHideFlags: 0 m_Script: {fileID: 323110133, guid: 09c9b883b79ef864a99683bb36c5776d, type: 3} m_N...
jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/OculusTouchLeft.asset/0
{ "file_path": "jynew/jyx2/Assets/Plugins/Rewired/Internal/Data/Controllers/HardwareMaps/Joysticks/OculusTouchLeft.asset", "repo_id": "jynew", "token_count": 19610 }
1,509