summaryrefslogtreecommitdiff
path: root/assets/javascripts/rectangles/_env.js
blob: aa7af501b676c29deb2470052a9b595c582b6d0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
var environment = new function(){}
environment.init = function(){
	scene.camera.move({
		"x": 0,
		"y": 0,
		"z": -1000,
		"rotationX": 0.085,
		"rotationY": 0.025
	})
	map && map.zoom(3.00) && map.recenter()

	clipper.init()
	scene.update()
}
environment.update = function(t){
}