text
stringlengths
7
35.3M
id
stringlengths
11
185
metadata
dict
__index_level_0__
int64
0
2.14k
fileFormatVersion: 2 guid: bab29f8d266e4ea4a8193da211ca94f3 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Shops/IOrderLine.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Shops/IOrderLine.cs.meta", "repo_id": "jynew", "token_count": 70 }
1,447
namespace UIWidgets.Examples.Shops { using System; using System.Collections.Generic; using UIWidgets; /// <summary> /// TraderListView sort fields. /// </summary> public enum TraderListViewSortFields { /// <summary> /// Item name. /// </summary> ItemName = 0, /// <summary> /// Item available. /...
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Shops/JRPGShop/TraderListView.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Shops/JRPGShop/TraderListView.cs", "repo_id": "jynew", "token_count": 1674 }
1,448
namespace UIWidgets.Examples.Shops { using System.Collections.Generic; using UnityEngine; /// <summary> /// Prices. /// </summary> public static class Prices { static readonly Dictionary<string, int> BasePrices = new Dictionary<string, int>() { { "Stick", 5 }, { "Sword", 100 }, { "Short Sword", 75...
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Shops/Prices.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Shops/Prices.cs", "repo_id": "jynew", "token_count": 561 }
1,449
fileFormatVersion: 2 guid: f8574cc94bd459f429c120af17ab708c timeCreated: 1636299118 licenseType: Store DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/SnapGrid/SnapGridDrawer.unity.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/SnapGrid/SnapGridDrawer.unity.meta", "repo_id": "jynew", "token_count": 74 }
1,450
namespace UIWidgets.Examples.DataChange { using System.Collections; using System.Collections.Generic; using UnityEngine; /// <summary> /// Test table. /// </summary> public class TestTable : MonoBehaviour { Dictionary<string, Data> data = new Dictionary<string, Data>() { { "Item 1", new Data("Item 1", 0...
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Table/DataChange/TestTable.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Table/DataChange/TestTable.cs", "repo_id": "jynew", "token_count": 751 }
1,451
fileFormatVersion: 2 guid: d6aa1cae74a227f48b953f14fbfff73e MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Table/SteamSpyComponent.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Table/SteamSpyComponent.cs.meta", "repo_id": "jynew", "token_count": 70 }
1,452
namespace UIWidgets.Examples { using System.Collections.Generic; using UIWidgets; /// <summary> /// TableList sample. /// </summary> public class TableList : ListViewCustom<TableListComponent, List<int>> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Table/TableList/TableList.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Table/TableList/TableList.cs", "repo_id": "jynew", "token_count": 77 }
1,453
fileFormatVersion: 2 guid: 63e6dcdfdcb1d2c46bf9a5b50b79f6c3 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TestScripts/TestTabs.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TestScripts/TestTabs.cs.meta", "repo_id": "jynew", "token_count": 75 }
1,454
fileFormatVersion: 2 guid: 80de21733d4c816419b483f333eab092 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TileView/GroupedTileView/TestGroupedTileView.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TileView/GroupedTileView/TestGroupedTileView.cs.meta", "repo_id": "jynew", "token_count": 69 }
1,455
namespace UIWidgets.Examples { using UIWidgets; using UnityEngine; /// <summary> /// Test changing TileView DefaultItem. /// </summary> public class TileViewDefaultItemChange : MonoBehaviour { /// <summary> /// TileView. /// </summary> [SerializeField] protected TileViewIcons TileView; /// <summar...
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TileView/TileViewDefaultItemChange.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TileView/TileViewDefaultItemChange.cs", "repo_id": "jynew", "token_count": 304 }
1,456
namespace UIWidgets.Examples { using UIWidgets; using UnityEngine; using UnityEngine.EventSystems; /// <summary> /// TileViewIcons drop support. /// </summary> [RequireComponent(typeof(TileViewIcons))] public class TileViewIconsDropSupport : ListViewCustomDropSupport<TileViewIcons, ListViewIconsItemComponent,...
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TileView/TileViewIcons/TileViewIconsDropSupport.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TileView/TileViewIcons/TileViewIconsDropSupport.cs", "repo_id": "jynew", "token_count": 687 }
1,457
namespace UIWidgets.Examples { using UIWidgets; using UnityEngine; using UnityEngine.EventSystems; /// <summary> /// TileViewSample. /// </summary> public class TileViewSample : TileViewCustom<TileViewComponentSample, TileViewItemSample> { bool isTileViewSampleInited; /// <inheritdoc/> [System.Diagnosti...
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TileView/TileViewSample.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TileView/TileViewSample.cs", "repo_id": "jynew", "token_count": 417 }
1,458
fileFormatVersion: 2 guid: b13f3a5e271ee15449357a33861252ce DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Time/Time.unity.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/Time/Time.unity.meta", "repo_id": "jynew", "token_count": 63 }
1,459
namespace UIWidgets.Examples { using System; /// <summary> /// TrackBackground. /// </summary> public class TrackBackground : TrackBackgroundBase<TrackData, DateTime> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TracksView/TrackBackground.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TracksView/TrackBackground.cs", "repo_id": "jynew", "token_count": 61 }
1,460
namespace UIWidgets.Examples { using System; using System.Collections.Generic; using UIWidgets; /// <summary> /// Layout with compact order and items at any line grouped by name. /// </summary> public class TrackLayoutByName : TrackLayoutAnyLineCompact<TrackData, DateTime> { readonly List<TrackData> resetFi...
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TracksView/TrackLayoutByName.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TracksView/TrackLayoutByName.cs", "repo_id": "jynew", "token_count": 906 }
1,461
fileFormatVersion: 2 guid: 72064d2f6ac0ea14da6ac609f723925a timeCreated: 1644416929 licenseType: Store DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TreeView/HierarchyView/HierarchyView.unity.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TreeView/HierarchyView/HierarchyView.unity.meta", "repo_id": "jynew", "token_count": 77 }
1,462
namespace UIWidgets.Examples { using UIWidgets; /// <summary> /// TreeViewSample component continent. /// </summary> public class TreeViewSampleComponentContinent : TreeViewSampleComponent { /// <inheritdoc/> protected override void UpdateView() { var item = Item as TreeViewSampleItemContinent; if (...
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TreeView/MultipleDefaultItems/TreeViewSampleComponentContinent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TreeView/MultipleDefaultItems/TreeViewSampleComponentContinent.cs", "repo_id": "jynew", "token_count": 206 }
1,463
fileFormatVersion: 2 guid: 95e5aba74887faf45af757819d0d9690 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TreeView/TreeViewCheckboxes/TreeViewCheckboxes.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TreeView/TreeViewCheckboxes/TreeViewCheckboxes.cs.meta", "repo_id": "jynew", "token_count": 69 }
1,464
fileFormatVersion: 2 guid: 0c1459ffe214108409fdbfa59fa5cbc4 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TreeView/TreeViewSampleItemContinent.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets.Editor/Examples/TreeView/TreeViewSampleItemContinent.cs.meta", "repo_id": "jynew", "token_count": 68 }
1,465
fileFormatVersion: 2 guid: 48d6be4465afc704fad81633397bf474 labels: - UiwidgetsAsset NativeFormatImporter: externalObjects: {} mainObjectFileID: 0 userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Assets/DataBindTemplates.asset.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Assets/DataBindTemplates.asset.meta", "repo_id": "jynew", "token_count": 82 }
1,466
fileFormatVersion: 2 guid: 46f89daa8431af6498802c890e2cc473 labels: - AutocompleteStringCombobox - UiwidgetsPrefab - UiwidgetsAutocompleteStringComboboxPrefab NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/AutocompleteStringCombobox.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/AutocompleteStringCombobox.prefab.meta", "repo_id": "jynew", "token_count": 76 }
1,467
fileFormatVersion: 2 guid: e933d52c9fa68304db338a7a2a883267 labels: - Color Picker - ColorPicker - UiwidgetsColorPickerPrefab - UiwidgetsPrefab NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/ColorPicker.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/ColorPicker.prefab.meta", "repo_id": "jynew", "token_count": 74 }
1,468
fileFormatVersion: 2 guid: e71879ae88e917c46bb3b61b0897aa6d labels: - ComboboxInputField - UiwidgetsComboboxInputFieldPrefab - UiwidgetsPrefab NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/ComboboxInputField.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/ComboboxInputField.prefab.meta", "repo_id": "jynew", "token_count": 74 }
1,469
fileFormatVersion: 2 guid: 3da7e83e2d7c5be438bc9e05479c3ef2 labels: - DateTimeScrollerSeparate - UiwidgetsDateTimeScrollerSeparatePrefab - UiwidgetsPrefab NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/DateTimeScrollerSeparate.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/DateTimeScrollerSeparate.prefab.meta", "repo_id": "jynew", "token_count": 78 }
1,470
fileFormatVersion: 2 guid: 7d4e20bd17f86db4982314aa204b3c1e labels: - ListViewIcons - UiwidgetsListViewIconsPrefab - UiwidgetsPrefab NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/ListViewIcons.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/ListViewIcons.prefab.meta", "repo_id": "jynew", "token_count": 72 }
1,471
fileFormatVersion: 2 guid: b16e9ad2938f530418924f2c0f51b5b1 labels: - UiwidgetsPrefab - PickerInt - UiwidgetsPickerIntPrefab NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/PickerIntTemplate.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/PickerIntTemplate.prefab.meta", "repo_id": "jynew", "token_count": 72 }
1,472
fileFormatVersion: 2 guid: 7cd6a4c902192574e94b10f364121e3e labels: - RangeSliderFloatVertical - UiwidgetsPrefab - UiwidgetsRangeSliderFloatVerticalPrefab NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/RangeSliderFloatVertical.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/RangeSliderFloatVertical.prefab.meta", "repo_id": "jynew", "token_count": 77 }
1,473
fileFormatVersion: 2 guid: 6aad880eb41ae6b4b9df85d950760dca labels: - UiwidgetsPrefab - SpinnerFloat - UiwidgetsSpinnerFloatPrefab NativeFormatImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/SpinnerFloat.prefab.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/SpinnerFloat.prefab.meta", "repo_id": "jynew", "token_count": 69 }
1,474
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!1 &129924 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} serializedVersion: 4 m_Component: - 224: {fileID: 22429924} - 222: {fileID: 22229924} - 114: {fileID: 11429930} - 114: {fileID: 11429928} ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/Templates/ComboboxMultiselectTemplate.prefab/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/Templates/ComboboxMultiselectTemplate.prefab", "repo_id": "jynew", "token_count": 9633 }
1,475
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!1 &100358 GameObject: m_ObjectHideFlags: 1 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} serializedVersion: 5 m_Component: - component: {fileID: 22400358} m_Layer: 5 m_Name: Sliding Area m_TagString: Untagged m_Icon: {fileID: ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/Templates/TileViewTemplate.prefab/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/Templates/TileViewTemplate.prefab", "repo_id": "jynew", "token_count": 13145 }
1,476
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!1 &142950 GameObject: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} serializedVersion: 6 m_Component: - component: {fileID: 22442950} - component: {fileID: 22242950} - component: {f...
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/TimeScroller.prefab/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/TimeScroller.prefab", "repo_id": "jynew", "token_count": 23373 }
1,477
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!1 &196866 GameObject: m_ObjectHideFlags: 0 m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 100100000} serializedVersion: 5 m_Component: - component: {fileID: 22496866} - component: {fileID: 22296870} - component: {fileID: 11496854} - compone...
jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/[obsolete] ListViewHeight.prefab/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Prefabs/[obsolete] ListViewHeight.prefab", "repo_id": "jynew", "token_count": 15578 }
1,478
namespace UIWidgets { using UnityEngine; using UnityEngine.Events; using UnityEngine.EventSystems; /// <summary> /// OnClick listener. /// </summary> public class AccordionItemComponent : MonoBehaviour, IPointerDownHandler, IPointerUpHandler, IPointerClickHandler, ISubmitHandler { /// <summary> /// Item e...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Accordion/AccordionItemComponent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Accordion/AccordionItemComponent.cs", "repo_id": "jynew", "token_count": 589 }
1,479
fileFormatVersion: 2 guid: 077c60af3669be043983a8804394af9e MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Calendar/CalendarDateBase.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Calendar/CalendarDateBase.cs.meta", "repo_id": "jynew", "token_count": 69 }
1,480
namespace UIWidgets { using System; using System.Collections.Generic; using UIWidgets.Styles; using UnityEngine; using UnityEngine.UI; /// <summary> /// Analog Time widget. /// </summary> public class TimeAnalog : TimeBase { /// <summary> /// The button to increase hours. /// </summary> [SerializeFie...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Calendar/TimeAnalog.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Calendar/TimeAnalog.cs", "repo_id": "jynew", "token_count": 1964 }
1,481
fileFormatVersion: 2 guid: 6b728c288b3bb494d85d974becbf883f labels: - Uiwidgets MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/CenteredSlider/CenteredSliderBase.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/CenteredSlider/CenteredSliderBase.cs.meta", "repo_id": "jynew", "token_count": 79 }
1,482
fileFormatVersion: 2 guid: ec6bb929e9f811344ad0449e9294b459 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/CollectionsUtilities/ICollectionChanged.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/CollectionsUtilities/ICollectionChanged.cs.meta", "repo_id": "jynew", "token_count": 70 }
1,483
namespace UIWidgets { using UIWidgets.Styles; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; /// <summary> /// Color picker HSV palette. /// </summary> public class ColorPickerHSVPalette : MonoBehaviour { [SerializeField] Image palette; RectTransform paletteRect; DragListen...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/ColorPickerHSVPalette.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/ColorPickerHSVPalette.cs", "repo_id": "jynew", "token_count": 7249 }
1,484
namespace UIWidgets { using UIWidgets.Styles; using UnityEngine; using UnityEngine.UI; /// <summary> /// Colors list. /// </summary> public class ColorsList : MonoBehaviour, IStylable { /// <summary> /// ColorPicker. /// </summary> [SerializeField] protected ColorPicker colorPicker; /// <summary>...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/ColorsList.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ColorPicker/ColorsList.cs", "repo_id": "jynew", "token_count": 1322 }
1,485
namespace UIWidgets { /// <summary> /// ComboboxEnum. /// </summary> public class ComboboxEnum : ComboboxCustom<ListViewEnum, ListViewEnumComponent, ListViewEnum.Item> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Combobox/ComboboxEnum.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Combobox/ComboboxEnum.cs", "repo_id": "jynew", "token_count": 82 }
1,486
fileFormatVersion: 2 guid: f70a57a6816b21942b9927c246940e1e MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Connector/ConnectorLine.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Connector/ConnectorLine.cs.meta", "repo_id": "jynew", "token_count": 71 }
1,487
namespace UIWidgets.Menu { using System; using System.Collections.Generic; using UIWidgets.Attributes; using UIWidgets.l10n; using UIWidgets.Styles; using UnityEngine; using UnityEngine.EventSystems; #if ENABLE_INPUT_SYSTEM using UnityEngine.InputSystem; #endif using UnityEngine.Serialization; /// <summary>...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ContextMenu/ContextMenu.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ContextMenu/ContextMenu.cs", "repo_id": "jynew", "token_count": 7875 }
1,488
namespace UIWidgets.Menu { using System.ComponentModel; using System.Runtime.CompilerServices; using UIWidgets.l10n; using UnityEngine; #if ENABLE_INPUT_SYSTEM using UnityEngine.InputSystem; #endif /// <summary> /// Menu item. /// </summary> public class MenuItem : IObservable, INotifyPropertyChanged { st...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ContextMenu/MenuItem.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ContextMenu/MenuItem.cs", "repo_id": "jynew", "token_count": 3999 }
1,489
fileFormatVersion: 2 guid: 91c23f731032c0649b92539754ca1c35 folderAsset: yes DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Converter.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Converter.meta", "repo_id": "jynew", "token_count": 68 }
1,490
namespace UIWidgets { /// <summary> /// Interface for the upgrade support. /// </summary> public interface IUpgradeable { /// <summary> /// Upgrade internal data to the latest version. /// </summary> void Upgrade(); } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Core/IUpgradeable.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Core/IUpgradeable.cs", "repo_id": "jynew", "token_count": 79 }
1,491
fileFormatVersion: 2 guid: e96d92904c214b14d99e7046ec2f0d0b MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: - DefaultCursors: {fileID: 11400000, guid: c5a411f09528d2642a908e3ad11fbc0f, type: 2} executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVa...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Cursor/CursorsDPISelector.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Cursor/CursorsDPISelector.cs.meta", "repo_id": "jynew", "token_count": 140 }
1,492
namespace UIWidgets { using System; /// <summary> /// Dialog button info. /// </summary> public class DialogButton : ButtonConfiguration<DialogBase> { /// <summary> /// Initializes a new instance of the <see cref="DialogButton"/> class. /// </summary> public DialogButton() : base() { } /// <su...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/DialogButton.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/DialogButton.cs", "repo_id": "jynew", "token_count": 589 }
1,493
namespace UIWidgets { /// <summary> /// Hideable interface. /// </summary> public interface IHideable { /// <summary> /// Hide. /// </summary> void Hide(); } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/IHideable.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/IHideable.cs", "repo_id": "jynew", "token_count": 71 }
1,494
namespace UIWidgets { using UIWidgets.Styles; using UnityEngine; /// <summary> /// PickerStringV2. /// </summary> public class PickerStringV2 : Picker<string, PickerStringV2> { /// <summary> /// ListView. /// </summary> [SerializeField] public ListViewString ListView; /// <summary> /// Prepare p...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/PickerStringV2.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Dialog/PickerStringV2.cs", "repo_id": "jynew", "token_count": 505 }
1,495
namespace UIWidgets { using System; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; using UnityEngine.EventSystems; using UnityEngine.Serialization; /// <summary> /// Drag support. /// Drop component should implement IDropSupport{TItem} with same type. /// </summary> /// <type...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/DragSupport.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/DragSupport.cs", "repo_id": "jynew", "token_count": 5001 }
1,496
namespace UIWidgets { using UIWidgets.Styles; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.Serialization; /// <summary> /// DropSupport for ListViewCustom. /// </summary> /// <typeparam name="TListView">ListView type.</typeparam> /// <typeparam name="TItemView">Component type.</typepa...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/ListViewCustomDropSupport.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/ListViewCustomDropSupport.cs", "repo_id": "jynew", "token_count": 2314 }
1,497
namespace UIWidgets { /// <summary> /// TreeNode drop type. /// </summary> public enum TreeNodeDropType { /// <summary> /// Drop as child of current node. /// </summary> Child = 0, /// <summary> /// Drop before current node. /// </summary> Before = 1, /// <summary> /// Drop after current nod...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/TreeNodeDropType.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Drag-and-Drop/TreeNodeDropType.cs", "repo_id": "jynew", "token_count": 139 }
1,498
fileFormatVersion: 2 guid: b97b4166f9308d84a9546cf39d7b50f7 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Draggable/DragListener.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Draggable/DragListener.cs.meta", "repo_id": "jynew", "token_count": 72 }
1,499
fileFormatVersion: 2 guid: 091a635fca163844186078cb2ae83108 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Draggable/ObjectSlidingVerticalHelper.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Draggable/ObjectSlidingVerticalHelper.cs.meta", "repo_id": "jynew", "token_count": 68 }
1,500
namespace EasyLayoutNS { using System; using System.Collections.Generic; using UnityEngine; using UnityEngine.Events; using UnityEngine.EventSystems; /// <summary> /// Scroll for EasyLayout with Ellipse layout type. /// </summary> [RequireComponent(typeof(EasyLayout))] public class EasyLayoutEllipseScroll :...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutEllipseScroll.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutEllipseScroll.cs", "repo_id": "jynew", "token_count": 3640 }
1,501
namespace EasyLayoutNS { /// <summary> /// Position. /// </summary> public struct EasyLayoutPosition : System.IEquatable<EasyLayoutPosition> { /// <summary> /// X. /// </summary> public readonly int X; /// <summary> /// Y. /// </summary> public readonly int Y; /// <summary> /// Initializes a...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutPosition.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/EasyLayoutPosition.cs", "repo_id": "jynew", "token_count": 825 }
1,502
namespace EasyLayoutNS { using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.Serialization; using UnityEngine.UI; /// <summary> /// Allow to control the maximum preferred sizes of the LayoutGroup. /// </summary> [RequireComponent(typeof(LayoutGroup))] public class LayoutElementMax : UIBehavi...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/LayoutElementMax.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/EasyLayout/LayoutElementMax.cs", "repo_id": "jynew", "token_count": 1907 }
1,503
namespace UIWidgets { using System.Collections.Generic; using UnityEngine; /// <summary> /// Lines drawer. /// </summary> [AddComponentMenu("UI/New UI Widgets/Effects/Lines Drawer")] public class LinesDrawer : LinesDrawerBase { [SerializeField] List<float> linesX = new List<float>(); ObservableList<flo...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Effects/LinesDrawer.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Effects/LinesDrawer.cs", "repo_id": "jynew", "token_count": 858 }
1,504
namespace UIWidgets { using System; using UnityEngine; using UnityEngine.Serialization; using UnityEngine.UI; /// <summary> /// UV effect. /// </summary> [RequireComponent(typeof(RectTransform))] [RequireComponent(typeof(Graphic))] public abstract class UVEffect : BaseMeshEffect, IMaterialModifier, IMeshMod...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Effects/UVEffect.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Effects/UVEffect.cs", "repo_id": "jynew", "token_count": 3624 }
1,505
namespace UIWidgets { using UIWidgets.Styles; using UnityEngine; /// <summary> /// Base class for DrivesListViewComponent. /// </summary> public class DrivesListViewComponentBase : ListViewItem, IViewData<FileSystemEntry> { /// <summary> /// Text component to display drive name. /// </summary> [Seriali...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/IO/DrivesListViewComponentBase.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/IO/DrivesListViewComponentBase.cs", "repo_id": "jynew", "token_count": 462 }
1,506
namespace UIWidgets { /// <summary> /// FileSystem entry. /// </summary> public class FileSystemEntry { /// <summary> /// Full name. /// </summary> public string FullName { get; protected set; } /// <summary> /// Name to display. /// </summary> public string DisplayName { get; p...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/IO/FileSystemEntry.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/IO/FileSystemEntry.cs", "repo_id": "jynew", "token_count": 462 }
1,507
namespace UIWidgets { using System; using UnityEngine.Events; /// <summary> /// Layout switcher event. /// </summary> [Serializable] public class LayoutSwitcherEvent : UnityEvent<UILayout> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/LayoutSwitcher/LayoutSwitcherEvent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/LayoutSwitcher/LayoutSwitcherEvent.cs", "repo_id": "jynew", "token_count": 75 }
1,508
namespace UIWidgets { using System; using UnityEngine.Events; /// <summary> /// List view event. /// </summary> [Serializable] public class ListViewEvent : UnityEvent<int, string> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Events/ListViewEvent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Events/ListViewEvent.cs", "repo_id": "jynew", "token_count": 72 }
1,509
namespace UIWidgets { using System; using UnityEngine.Events; using UnityEngine.EventSystems; /// <summary> /// List view item pointer move event. /// </summary> [Serializable] public class ListViewItemMove : UnityEvent<AxisEventData, ListViewItem> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Events/ListViewItemMove.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Events/ListViewItemMove.cs", "repo_id": "jynew", "token_count": 91 }
1,510
namespace UIWidgets { /// <summary> /// interface for displaying item data. /// </summary> /// <typeparam name="T">Item type.</typeparam> public interface IViewData<T> { /// <summary> /// Set data. /// </summary> /// <param name="item">Item.</param> void SetData(T item); } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/IViewData.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/IViewData.cs", "repo_id": "jynew", "token_count": 111 }
1,511
fileFormatVersion: 2 guid: b9b99407a9515214482587f751175bd4 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewComponentPool.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewComponentPool.cs.meta", "repo_id": "jynew", "token_count": 69 }
1,512
fileFormatVersion: 2 guid: 57a0567f0582552448e7cfd4e0f5d93b folderAsset: yes timeCreated: 1625416557 licenseType: Store DefaultImporter: externalObjects: {} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewIcons.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewIcons.meta", "repo_id": "jynew", "token_count": 85 }
1,513
// should be deleted
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewItemEventData.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewItemEventData.cs", "repo_id": "jynew", "token_count": 7 }
1,514
fileFormatVersion: 2 guid: c7cddd1f46f25ed40a43d9313429fae8 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewString/ListViewStringItemComponent.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewString/ListViewStringItemComponent.cs.meta", "repo_id": "jynew", "token_count": 72 }
1,515
namespace UIWidgets { using System; using EasyLayoutNS; using UIWidgets.Styles; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; /// <content> /// Base class for custom ListViews. /// </content> public partial class ListViewCustom<TItemView, TItem> : ListViewCustomBase, IStylable w...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewType/TileViewTypeFixed.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/ListViewType/TileViewTypeFixed.cs", "repo_id": "jynew", "token_count": 2782 }
1,516
fileFormatVersion: 2 guid: 0b20f1d36cc67344a943b4750104ce57 labels: - Uiwidgets MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Obsolete/ListViewCustomHeight.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ListView/Obsolete/ListViewCustomHeight.cs.meta", "repo_id": "jynew", "token_count": 80 }
1,517
namespace UIWidgets { using UnityEngine; using UnityEngine.Events; /// <summary> /// Transform listener. /// </summary> [ExecuteInEditMode] public class TransformListener : MonoBehaviour, IUpdatable { /// <summary> /// The transform changed event. /// </summary> public UnityEvent OnTransformChanged = ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Listeners/TransformListener.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Listeners/TransformListener.cs", "repo_id": "jynew", "token_count": 390 }
1,518
namespace UIWidgets { using System.Collections; using System.Collections.Generic; using UnityEngine; /// <summary> /// Notification order sequence. /// </summary> public enum NotifySequence { /// <summary> /// Display notification right now, without adding to sequence. /// </summary> None = 0, /// ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Notify/NotifySequenceManager.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Notify/NotifySequenceManager.cs", "repo_id": "jynew", "token_count": 1226 }
1,519
namespace UIWidgets { using System.Collections; using UIWidgets.Styles; using UnityEngine; using UnityEngine.UI; /// <summary> /// ProgressbarIndeterminate. /// </summary> public class ProgressbarIndeterminate : MonoBehaviour, IStylable { /// <summary> /// Progress bar animation direction. /// </summar...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Progressbar/ProgressbarIndeterminate.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Progressbar/ProgressbarIndeterminate.cs", "repo_id": "jynew", "token_count": 1136 }
1,520
namespace UIWidgets { using UnityEngine; /// <summary> /// Scripts templates. /// </summary> public class DataBindTemplates : ScriptableObject { #if UNITY_EDITOR static DataBindTemplates instance; /// <summary> /// Instance. /// </summary> public static DataBindTemplates Instance { get { ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/References/DataBindTemplates.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/References/DataBindTemplates.cs", "repo_id": "jynew", "token_count": 368 }
1,521
namespace UIWidgets { using UnityEngine; using UnityEngine.Events; /// <summary> /// Splitter resize event. /// </summary> [SerializeField] public class SplitterResizeEvent : UnityEvent<Splitter> { } }
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Resizable/Event/SplitterResizeEvent.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Resizable/Event/SplitterResizeEvent.cs", "repo_id": "jynew", "token_count": 76 }
1,522
fileFormatVersion: 2 guid: 524946217097de840b0bb2645fee0085 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Rotatable/RotatableHandle.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Rotatable/RotatableHandle.cs.meta", "repo_id": "jynew", "token_count": 67 }
1,523
namespace UIWidgets { /// <summary> /// Paginator direction. /// </summary> public enum PaginatorDirection { /// <summary> /// Auto detect direction using ScrollRect.Direction and size of ScrollRect.Content. /// </summary> Auto = 0, /// <summary> /// Horizontal. /// </summary> Horizontal = 1, ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/Enums/PaginatorDirection.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/Enums/PaginatorDirection.cs", "repo_id": "jynew", "token_count": 145 }
1,524
fileFormatVersion: 2 guid: 39d2918bd82858047ba3d95101a50e2a MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/ScrollButton.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ScrollRectUtilities/ScrollButton.cs.meta", "repo_id": "jynew", "token_count": 70 }
1,525
namespace UIWidgets { using UnityEngine; using UnityEngine.EventSystems; /// <summary> /// Sidebar handle. /// </summary> public class SidebarHandle : MonoBehaviour, IBeginDragHandler, IEndDragHandler, IDragHandler { /// <summary> /// BeginDrag event. /// </summary> public PointerUnityEvent BeginDragEv...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Sidebar/SidebarHandle.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Sidebar/SidebarHandle.cs", "repo_id": "jynew", "token_count": 452 }
1,526
namespace UIWidgets { using System; using UnityEngine; /// <summary> /// Base class for the SnapGrid. /// </summary> public abstract partial class SnapGridBase : UIBehaviourConditional { /// <summary> /// Border. /// </summary> [Serializable] public struct Border : IEquatable<Border> { /// <summ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/SnapGrid/SnapGridBase.Border.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/SnapGrid/SnapGridBase.Border.cs", "repo_id": "jynew", "token_count": 1079 }
1,527
namespace UIWidgets { using System; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; /// <summary> /// Snap grid detector /// </summary> [RequireComponent(typeof(ISnapGridSupport))] public class SnapGridDetector : MonoBehaviour, IInitializePotentialDragHandler, IBeginDrag...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/SnapGrid/SnapGridDetector.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/SnapGrid/SnapGridDetector.cs", "repo_id": "jynew", "token_count": 1856 }
1,528
// <auto-generated/> // Auto-generated added to suppress names errors. namespace UIWidgets { using System; using System.Collections; using UIWidgets.Attributes; using UIWidgets.Styles; using UnityEngine; using UnityEngine.Events; using UnityEngine.EventSystems; using UnityEngine.Serialization; using UnityEng...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Spinner/SpinnerBase.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Spinner/SpinnerBase.cs", "repo_id": "jynew", "token_count": 5807 }
1,529
namespace UIWidgets.Styles { using UnityEngine; using UnityEngine.UI; /// <summary> /// Style support for the combobox. /// </summary> public class StyleSupportCombobox : MonoBehaviour, IStylable { /// <summary> /// Combobox. /// </summary> [SerializeField] public GameObject Combobox; #region ISty...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Collections/StyleSupportCombobox.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Collections/StyleSupportCombobox.cs", "repo_id": "jynew", "token_count": 456 }
1,530
fileFormatVersion: 2 guid: 38454eda2ea854f4aa163f0a12716a5f MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Containers/StyleSupportTabsLeft.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Containers/StyleSupportTabsLeft.cs.meta", "repo_id": "jynew", "token_count": 70 }
1,531
namespace UIWidgets.Styles { using UnityEngine; using UnityEngine.UI; /// <summary> /// Style support for the notification. /// </summary> public class StyleSupportNotify : MonoBehaviour, IStylable { /// <summary> /// The background. /// </summary> [SerializeField] public Image Background; #region...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Dialogs/StyleSupportNotify.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Dialogs/StyleSupportNotify.cs", "repo_id": "jynew", "token_count": 232 }
1,532
fileFormatVersion: 2 guid: 21bc52d3205c160449fde61a4230456d MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/IStylable.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/IStylable.cs.meta", "repo_id": "jynew", "token_count": 68 }
1,533
namespace UIWidgets.Styles { using System; using UnityEngine; /// <summary> /// Style for the ColorPickerRange. /// </summary> [Serializable] public class StyleColorPickerRange : IStyleDefaultValues { /// <summary> /// Style for the background. /// </summary> [SerializeField] public StyleImage Backg...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleColorPickerRange.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleColorPickerRange.cs", "repo_id": "jynew", "token_count": 214 }
1,534
namespace UIWidgets.Styles { using UnityEngine; using UnityEngine.UI; /// <summary> /// Style support for the calendar. /// </summary> public class StyleSupportCalendar : MonoBehaviour, IStylable { /// <summary> /// Next month. /// </summary> [SerializeField] public Image NextMonth; /// <summary> ...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleSupportCalendar.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Input/StyleSupportCalendar.cs", "repo_id": "jynew", "token_count": 310 }
1,535
fileFormatVersion: 2 guid: 7afb945dda4fbd54aa8514f5d4419975 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Misc/StyleContextMenu.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Misc/StyleContextMenu.cs.meta", "repo_id": "jynew", "token_count": 95 }
1,536
fileFormatVersion: 2 guid: 2678e9dbadb6b4d4aaab96d5b9d2148a MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Misc/StyleSupportTooltip.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Misc/StyleSupportTooltip.cs.meta", "repo_id": "jynew", "token_count": 74 }
1,537
namespace UIWidgets.Styles { using System; using UnityEngine; using UnityEngine.UI; /// <summary> /// Style for the slider. /// </summary> [Serializable] public class StyleSlider : IStyleDefaultValues { /// <summary> /// Style for the background. /// </summary> [SerializeField] public StyleImage Ba...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Unity/StyleSlider.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Style/Unity/StyleSlider.cs", "repo_id": "jynew", "token_count": 683 }
1,538
fileFormatVersion: 2 guid: 76318fc43b411ff4cbba0a5a94f52471 folderAsset: yes DefaultImporter: userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Switch.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Switch.meta", "repo_id": "jynew", "token_count": 45 }
1,539
namespace UIWidgets { using System; using System.Collections.Generic; using System.Collections.ObjectModel; using UIWidgets.Styles; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.Serialization; using UnityEngine.UI; /// <summary> /// Table Header. /// How to change DefaultItem: /// v...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Table/TableHeader.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Table/TableHeader.cs", "repo_id": "jynew", "token_count": 12919 }
1,540
fileFormatVersion: 2 guid: 4be47222ddef25940bcfc1c668102563 MonoImporter: serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Tabs/TabButtonComponent.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Tabs/TabButtonComponent.cs.meta", "repo_id": "jynew", "token_count": 68 }
1,541
#if UIWIDGETS_TMPRO_SUPPORT namespace UIWidgets { using UnityEngine; using UnityEngine.UI; /// <summary> /// TextTMPro. /// </summary> public class TextTMPro : ITextProxy { /// <summary> /// Is enum value has specified flag? /// </summary> /// <param name="value">Enum value.</param> /// <param name="...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Text/TextTMPro.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/Text/TextTMPro.cs", "repo_id": "jynew", "token_count": 1370 }
1,542
fileFormatVersion: 2 guid: 937041d04fb0db24285b709edd2d5b24 MonoImporter: externalObjects: {} serializedVersion: 2 defaultReferences: [] executionOrder: 0 icon: {instanceID: 0} userData: assetBundleName: assetBundleVariant:
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/Calendar/TimeBaseTimeObserver.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/Calendar/TimeBaseTimeObserver.cs.meta", "repo_id": "jynew", "token_count": 93 }
1,543
fileFormatVersion: 2 guid: 9335ae9e063ace249a9eaf24a5c4d702 timeCreated: 1520699764 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/CenteredSlider/Horizontal/CenteredSliderUseValueLimitsSetter.cs.meta/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CenteredSlider/Horizontal/CenteredSliderUseValueLimitsSetter.cs.meta", "repo_id": "jynew", "token_count": 108 }
1,544
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Setters; using UnityEngine; /// <summary> /// Set the LimitMax 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/CenteredSliderVerticalLimitMaxSetter.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CenteredSlider/Vertical/CenteredSliderVerticalLimitMaxSetter.cs", "repo_id": "jynew", "token_count": 219 }
1,545
#if UIWIDGETS_DATABIND_SUPPORT namespace UIWidgets.DataBind { using Slash.Unity.DataBind.Foundation.Setters; using UnityEngine; /// <summary> /// Set the Value of a CenteredSliderVertical depending on the System.Int32 data value. /// </summary> [AddComponentMenu("Data Bind/New UI Widgets/Setters/[DB] CenteredSli...
jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CenteredSlider/Vertical/CenteredSliderVerticalValueSetter.cs/0
{ "file_path": "jynew/jyx2/Assets/Plugins/New UI Widgets/Scripts/ThirdPartySupport/DataBindSupport/CenteredSlider/Vertical/CenteredSliderVerticalValueSetter.cs", "repo_id": "jynew", "token_count": 215 }
1,546