-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.73 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.73 KB
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
{
"name": "com.ripandy.soar",
"displayName": "SOAR",
"author": {
"name": "Ripandy Adha",
"url": "https://github.com/ripandy/SOAR"
},
"version": "1.0.1",
"unity": "6000.0",
"description": "Scriptable Object Architecture Reactive-extensible with R3",
"keywords": [
"ScriptableObject",
"Scriptable Object Architecture",
"R3",
"SOAR"
],
"license": "MIT",
"publishConfig": {
"registry": "https://package.openupm.com"
},
"samples": [
{
"displayName": "Command Sample",
"description": "Demonstrates how to encapsulate logic in Command objects.",
"path": "Samples~/CommandSamples"
},
{
"displayName": "GameEvent Sample",
"description": "Demonstrates how to use GameEvents for decoupled communication.",
"path": "Samples~/GameEventSamples"
},
{
"displayName": "Variable Sample",
"description": "Demonstrates how to use Variables to share and observe data.",
"path": "Samples~/VariableSamples"
},
{
"displayName": "Collection Sample",
"description": "Demonstrates how to use reactive Collections to drive UI.",
"path": "Samples~/CollectionSamples"
},
{
"displayName": "Transaction Sample",
"description": "Demonstrates the request-response pattern with Transactions.",
"path": "Samples~/TransactionSamples"
},
{
"displayName": "UnityEventBinder Sample",
"description": "Shows how to use the UnityEventBinder to wire events in the Inspector.",
"path": "Samples~/UnityEventBinderSamples"
},
{
"displayName": "Jsonable Sample",
"description": "Demonstrates how to save and load data using Jsonable assets.",
"path": "Samples~/JsonableSamples"
}
]
}