Skip to content

Commit d50be17

Browse files
mtschoen-unityGitHub Enterprise
authored andcommitted
Merge pull request #20 from unity/Multi-Select
List Multiselect interface implementation
2 parents 567341c + 44e7f03 commit d50be17

4 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ All notable changes to this package will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [0.4.12-preview] - 1212-12-12
7+
## [0.4.12-preview] - 2020-09-11
8+
- Update List View Framework with multi-select changes
89

910
## [0.4.11-preview] - 2020-09-02
1011
- Update List View Framework dependency version

Runtime/Scripts/Data/AssetData.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ sealed class AssetData : IListViewItemData<int>
2020
public string type { get; private set; }
2121
public GameObject preview { get; set; }
2222

23+
public bool selected => false;
24+
2325
public Object asset
2426
{
2527
get { return m_Asset; }

Runtime/Workspaces/PolyWorkspace/Scripts/PolyGridAsset.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ class PolyGridAsset : IListViewItemData<string>, IUsesWeb
3434
public string template { get { return k_TemplateName; } }
3535

3636
public string index { get; private set; }
37+
public bool selected => false;
3738
public PolyAsset asset { get { return m_Asset; } }
3839
public GameObject prefab { get { return m_Prefab; } }
3940
public Texture2D thumbnail { get { return m_Thumbnail; } }

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dependencies": {
99
"com.unity.xrtools.utils": "1.1.1",
1010
"com.unity.xrtools.module-loader": "1.1.1",
11-
"com.unity.list-view-framework": "1.1.4-preview",
11+
"com.unity.list-view-framework": "1.1.5-preview",
1212
"com.unity.xrtools.spatial-hash": "0.1.3-preview",
1313
"com.unity.xr.legacyinputhelpers": "2.0.6",
1414
"com.unity.xr-line-renderer": "0.1.2-preview",

0 commit comments

Comments
 (0)