-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
74 lines (74 loc) · 2.84 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "de.jochenheckl.unity.databinding",
"displayName": "DataBinding",
"version": "3.2.0",
"unity": "2021.2",
"description": "DataBinding is a method of connecting a data model with user interface components, allowing changes in one to automatically reflect in the other.\n\nThis package supplies the means that will enable you to implement declarative user interfaces (== user interfaces that are a function of the underlying data that defines it). It's like WPF for Unity Game Objects.",
"keywords": [
"Data Binding",
"DataBinding",
"View Model",
"ViewModel",
"DataSource",
"MVVM",
"User Interface",
"UserInterface",
"UI",
"Dynamic User Interface",
"Dynamic UserInterface",
"Dynamic UI",
"Declarative User Interface",
"Declarative UserInterface",
"Declarative UI",
"SOLID"
],
"author": {
"name": "Jochen Heckl",
"email": "jochen.heckl@gmail.com",
"url": "https://www.jochenheckl.de"
},
"licensesUrl": "https://raw.githubusercontent.com/JochenHeckl/DataBinding/main/LICENSE.md",
"dependencies": {
"com.unity.test-framework": "1.4.3"
},
"testtables": [
"JH.DataBinding"
],
"samples": [
{
"displayName": "MyFirstDataBoundView (Getting Started Tutorial)",
"description": "The finished project you would have created when following the Getting Started Tutorial step by step.",
"path": "Samples~/MyFirstDataBoundView (Getting Started Tutorial)"
},
{
"displayName": "A look at ContainerBindings - Tutorial",
"description": "Starting point for a simple step by step tutorial introducing ContainerBindings.",
"path": "Samples~/A look at ContainerBindings - Tutorial"
},
{
"displayName": "A look at ContainerBindings - Finished",
"description": "The finished project you will end up with after completing the step by step tutorial.",
"path": "Samples~/A look at ContainerBindings - Finished"
},
{
"displayName": "How to react to user input - Tutorial",
"description": "Lear how to accept user input in a simple step by step tutorial. https://github.com/JochenHeckl/DataBinding/Documentation~/HowToReactToUserInput.md",
"path": "Samples~/How to react to user input - Tutorial"
},
{
"displayName": "How to react to user input - Finished",
"description": "The finished project you will end up with after completing the step by step tutorial.",
"path": "Samples~/How to react to user input - Finished"
},
{
"displayName": "EditableDropdown",
"description": "A simple view with an EditableDropdown.",
"path": "Samples~/EditableDropdown"
},
{
"displayName": "GameObjectPropertyBindings",
"description": "A simple scene demonstrating how to bind GameObject properties.",
"path": "Samples~/GameObjectPropertyBindings"
}
]
}