-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3dobj_schemas.json
134 lines (134 loc) · 3.58 KB
/
3dobj_schemas.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[
{
"name": "entity",
"file": "schemas/entity.json",
"title": "Entity (generic object)",
"description": "Entities are the base of all objects in the scene. Entities are containers into which components can be attached."
},
{
"name": "gltf-model",
"file": "schemas/gltf-model.json",
"title": "GLTF Model",
"description": "Load a GLTF model"
},
{
"name": "threejs-scene",
"file": "schemas/threejs-scene.json",
"title": "Three.js Scene",
"description": "Load a Three.js Scene (might be THREE.js version-specific; you can see THREE.js version in the JS console once you open ARENA; using glTF is preferred)"
},
{
"name": "image",
"file": "schemas/image.json",
"title": "Image",
"description": "Display an image on a plane"
},
{
"name": "text",
"file": "schemas/text.json",
"title": "Text",
"description": "Display text"
},
{
"name": "light",
"file": "schemas/light.json",
"title": "Light",
"description": "A light"
},
{
"name": "line",
"file": "schemas/line.json",
"title": "Line",
"description": "Draw a line"
},
{
"name": "thickline",
"file": "schemas/thickline.json",
"title": "Thickline",
"description": "Draw a line that can have a custom width"
},
{
"name": "box",
"file": "schemas/box.json",
"title": "Box",
"description": "Box Geometry."
},
{
"name": "cube",
"file": "schemas/cube.json",
"title": "Cube (deprecated; don't use)",
"description": "Cube (=Box) Geometry; Supported for Legacy reasons; Please use Box in new scenes"
},
{
"name": "circle",
"file": "schemas/circle.json",
"title": "Circle",
"description": "Circle Geometry."
},
{
"name": "cone",
"file": "schemas/cone.json",
"title": "Cone",
"description": "Cone Geometry."
},
{
"name": "cylinder",
"file": "schemas/cylinder.json",
"title": "Cylinder",
"description": "cylinder Geometry."
},
{
"name": "dodecahedron",
"file": "schemas/dodecahedron.json",
"title": "Dodecahedron",
"description": "dodecahedron Geometry."
},
{
"name": "octahedron",
"file": "schemas/octahedron.json",
"title": "Octahedron",
"description": "Octahedron Geometry."
},
{
"name": "plane",
"file": "schemas/plane.json",
"title": "Plane",
"description": "Plane Geometry."
},
{
"name": "ring",
"file": "schemas/ring.json",
"title": "Ring",
"description": "Ring Geometry."
},
{
"name": "sphere",
"file": "schemas/sphere.json",
"title": "Sphere",
"description": "Sphere Geometry."
},
{
"name": "tetrahedron",
"file": "schemas/tetrahedron.json",
"title": "Tetrahedron",
"description": "Tetrahedron Geometry."
},
{
"name": "torus",
"file": "schemas/torus.json",
"title": "Torus",
"description": "Torus Geometry."
},
{
"name": "torusKnot",
"file": "schemas/torusKnot.json",
"title": "Torus Knot",
"description": "Torus Knot Geometry."
},
{
"name": "triangle",
"file": "schemas/triangle.json",
"title": "Triangle",
"description": "Triangle Geometry."
}
]