forked from KhronosGroup/glTF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcameras.json
40 lines (40 loc) · 1.18 KB
/
cameras.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
{
"cameras" : {
"perspectiveCamera_id" : {
"name" : "user-defined name of perspective camera",
"perspective" : {
"aspectRatio" : 1.77,
"yfov" : 0.7854,
"zfar" : 1000,
"znear" : 1
},
"type" : "perspective",
"extensions" : {
"extension_name" : {
"extension specific" : "value"
}
},
"extras" : {
"Application specific" : "The extra object can contain any properties."
}
},
"orthographicCamera_id" : {
"name" : "user-defined name of orthographic camera",
"orthographic" : {
"xmag" : 0.5,
"ymag" : 0.5,
"zfar" : 1000,
"znear" : 1
},
"type" : "orthographic",
"extensions" : {
"extension_name" : {
"extension specific" : "value"
}
},
"extras" : {
"Application specific" : "The extra object can contain any properties."
}
}
}
}