-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.php
52 lines (40 loc) · 1.66 KB
/
config.php
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
<?php
return [
'#theme-name' => 'VR View 360 Video with Hotspot Navigation',
'#theme-key' => 'vr-view-360-video-hotspot',
'#theme-version' => '1.1',
'#ideaspace-version' => '>=1.1.0',
'#theme-description' => 'Video sphere viewer with navigation hotspots. Based on the "VR View for the Web" by Google.',
'#theme-author-name' => 'IdeaSpaceVR',
'#theme-author-email' => '[email protected]',
'#theme-homepage' => 'https://www.ideaspacevr.org/themes',
'#theme-keywords' => 'video sphere, gaze input navigation, mobile, 360, video',
'#theme-view' => 'scene',
'#content-types' => [
'video-spheres' => [
'#label' => 'Video Spheres',
'#description' => 'Manage your video spheres.',
'#max-values' => 'infinite',
'#fields' => [
'video-sphere' => [
'#label' => 'Video Sphere',
'#description' => 'Upload a video sphere in equirectangular projection format.',
'#help' => 'Video sphere in equirectangular projection format.',
'#type' => 'videosphere',
'#required' => false,
'#file-extension' => ['mp4'],
],
'navigation-hotspots' => [
'#label' => 'Video Sphere Navigation Hotspot',
'#description' => 'Add navigation hotspots moving from one video sphere to the next.',
'#help' => 'Add navigation hotspots moving from one video sphere to the next.',
'#type' => 'position',
'#maxnumber' => 10,
'#required' => false,
'#content-type-reference' => 'video-spheres',
'#field-reference' => 'video-sphere',
],
], /* fields */
], /* video-spheres */
], /* content types */
];