1
1
/**
2
2
* This file is based on https://github.com/mapbox/webgl-wind
3
3
* by Vladimir Agafonkin
4
- *
4
+ *
5
5
* Released under ISC License, Copyright (c) 2016, Mapbox
6
6
* https://github.com/mapbox/webgl-wind/blob/master/LICENSE
7
- *
7
+ *
8
8
* Adapted to field maps by Andrei Kashcha
9
9
* Copyright (C) 2017
10
10
*/
@@ -22,8 +22,8 @@ import createInputsModel from './createInputsModel';
22
22
23
23
/**
24
24
* Kicks offs the app rendering. Initialized before even vue is loaded.
25
- *
26
- * @param {WebGLRenderingContext } gl
25
+ *
26
+ * @param {WebGLRenderingContext } gl
27
27
*/
28
28
export default function initScene ( gl ) {
29
29
// Canvas size management
@@ -32,7 +32,7 @@ export default function initScene(gl) {
32
32
window . addEventListener ( 'resize' , onResize , true ) ;
33
33
34
34
// Video capturing is available in super advanced mode. You'll need to install
35
- // and start https://github.com/greggman/ffmpegserver.js
35
+ // and start https://github.com/greggman/ffmpegserver.js
36
36
// Then type in the console: window.startRecord();
37
37
// This will trigger frame-by-frame recording (it is slow). To stop it, call window.stopRecord();
38
38
bus . on ( 'start-record' , startRecord ) ;
@@ -52,7 +52,7 @@ export default function initScene(gl) {
52
52
var particleCount = appState . getParticleCount ( ) ;
53
53
54
54
gl . disable ( gl . DEPTH_TEST ) ;
55
- gl . disable ( gl . STENCIL_TEST ) ;
55
+ gl . disable ( gl . STENCIL_TEST ) ;
56
56
57
57
// Context variable is a way to share rendering state between multiple programs. It has a lot of stuff on it.
58
58
// I found that it's the easiest way to work in state-full world of WebGL.
@@ -84,7 +84,7 @@ export default function initScene(gl) {
84
84
// current frame number. Reset every time when new shader is compiled
85
85
frame : 0 ,
86
86
87
- // Information about mouse cursor. Could be useful to simplify
87
+ // Information about mouse cursor. Could be useful to simplify
88
88
// exploration
89
89
cursor : {
90
90
// Where mouse was last time clicked (or tapped)
@@ -161,7 +161,7 @@ export default function initScene(gl) {
161
161
}
162
162
}
163
163
164
- var panzoom = initPanzoom ( ) ;
164
+ var panzoom = initPanzoom ( ) ;
165
165
restoreBBox ( ) ;
166
166
167
167
setTimeout ( ( ) => {
@@ -351,6 +351,7 @@ export default function initScene(gl) {
351
351
352
352
function initPanzoom ( ) {
353
353
let initializedPanzoom = makePanzoom ( gl . canvas , {
354
+ realPinch : true ,
354
355
zoomSpeed : 0.025 ,
355
356
controller : wglPanZoom ( gl . canvas , updateBoundingBox )
356
357
} ) ;
@@ -439,4 +440,4 @@ export default function initScene(gl) {
439
440
// a hack to trigger panzoom event
440
441
panzoom . moveBy ( 0 , 0 , false ) ;
441
442
}
442
- }
443
+ }
0 commit comments