-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththreeExamples.js
More file actions
87 lines (86 loc) · 2.68 KB
/
Copy paththreeExamples.js
File metadata and controls
87 lines (86 loc) · 2.68 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
const HOST = (window.origin + window.location.pathname).replace(/\/index.html$/, '/')
export default [
{
pid: 'RecentlySubmitted',
name: '最近提交',
name_en: 'Recently Submitted',
order: 0,
children: [
{
id: 'test',
name: 'test',
htmlUrl: HOST + 'three/test.html',
image: HOST + 'three/test.webp',
},
{
id: 'wuliTest',
name: 'wuliTest',
codeUrl: HOST + 'three/wuliTest.js',
image: HOST + 'three/wuliTest.webp',
},
{
id: 'shuiliu_kuan',
name: '宽水流',
name_en: 'shuiliu_kuan',
codeUrl: HOST + 'three/shuiliu_kuan.js',
image: HOST + 'three/shuiliu_kuan.webp',
},
{
id: 'octree',
name: '八叉树',
name_en: 'octree',
codeUrl: HOST + 'three/octree.js',
image: HOST + 'three/octree.webp',
},
{
id: 'rainday',
name: '雷雨',
name_en: 'rainday',
codeUrl: HOST + 'three/rainday.js',
image: HOST + 'three/rainday.webp',
},
{
id: 'DQuantum',
name: '3D Quantum',
name_en: '3D Quantum',
htmlUrl: HOST + 'three/DQuantum.html',
image: HOST + 'three/DQuantum.webp',
},
{
id: 'Singularity',
name: 'Singularity',
name_en: 'Singularity',
htmlUrl: HOST + 'three/Singularity.html',
image: HOST + 'three/Singularity.webp',
},
{
id: 'VeryHotPlanet',
name: 'VeryHotPlanet',
name_en: 'VeryHotPlanet',
htmlUrl: HOST + 'three/VeryHotPlanet.html',
image: HOST + 'three/VeryHotPlanet.webp',
},
{
id: 'CMAUtil',
name: '运镜辅助工具',
name_en: 'CameraMovementUtil',
htmlUrl: HOST + 'three/CMAUtil.html',
image: HOST + 'three/CMAUtil.webp',
},
{
id: 'amber',
name: '琥珀效果',
name_en: 'amber_test',
codeUrl: HOST + 'three/amber.js',
image: HOST + 'three/amber.webp',
},
{
id: 'threesd',
name: '闪电',
name_en: 'threesd',
htmlUrl: HOST + 'three/threesd.html',
image: HOST + 'three/threesd.webp',
},
]
}
]