-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpatialstrates Concepts.json
More file actions
105 lines (105 loc) · 3.39 KB
/
Spatialstrates Concepts.json
File metadata and controls
105 lines (105 loc) · 3.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"concepts": {
"Environment": {
"schema": {
"name": "string",
"url": "string",
"position": { "array": {
"items": "number",
"default": [ 0, 0, 0 ]
}},
"rotation": { "array": {
"items": "number",
"default": [ 0, 0, 0 ]
}},
"scale": { "number": {
"default": 1
}}
}
},
"SpaceManager": {
"schema": {
"placeholder": "string",
"locationHash": "Space",
"currentView": { "string": {
"enum": [ "3D", "2D" ],
"default": "3D"
}},
"showBoundary": "boolean",
"showProjectionPlane": "boolean",
"depthSensing": "boolean",
"xrPlatform": "string"
},
"mappings": {
"locationHash": [ "memory", "location", "cauldron"],
"currentView": [ "memory", "cauldron" ],
"showBoundary": [ "memory", "cauldron" ],
"showProjectionPlane": [ "memory", "cauldron" ],
"depthSensing": [ "memory", "cauldron" ],
"xrPlatform": [ "memory", "cauldron" ]
}
},
"Space": {
"schema": {
"name": "string",
"color": "string",
"movables": { "array": "Movable" },
"boundaryOrigin": { "array": {
"items": "number",
"default": [ 0, 1.5, 0 ]
}},
"boundarySize": { "array": {
"items": "number",
"default": [ 0.5, 0.5, 0.5 ]
}},
"projectionPlane": { "array": {
"items": "number",
"default": [ 0, 1.5, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1 ]
}},
"environment": "Environment"
}
},
"Movable": {
"schema": {
"position": { "array": {
"items": "number",
"default": [ 0, 1.5, 0 ]
}},
"rotation": { "array": {
"items": "number",
"default": [ 0, 0, 0 ]
}},
"space": "Space",
"selected": "boolean",
"hovered": "boolean",
"beingDragged": "boolean"
},
"mappings": {
"selected": [ "memory", "cauldron" ],
"hovered": [ "memory", "cauldron" ],
"beingDragged": [ "memory", "cauldron" ]
}
},
"Container": {
"schema": {
"containedSpace": "Space",
"clippingMode": { "string": {
"enum": [ "hide", "show", "fade" ],
"default": "hide"
}},
"collaborationLevel": { "string": {
"enum": [ "close", "loose", "none" ],
"default": "close"
}}
},
"extensions": {
"inject": [ "Movable" ]
}
}
},
"dataStores": {
"location": {
"type":"location"
}
}
}