prosperon/scripts/camera2d.jso

11 lines
475 B
Plaintext
Raw Normal View History

this.phys = physics.kinematic;
this.dir_view2world = function(dir) { return dir.scale(this.realzoom()); };
2024-03-19 14:39:19 -05:00
this.view2world = function(pos) { return render.view2world(pos); };
this.world2view = function(pos) { return render.world2view(pos); };
this.realzoom = function() { return render.get_zoom(); };
2024-04-01 08:13:57 -05:00
this.screenright = function() { return this.pos.x + (window.rendersize.x/2); }
this.screenleft = function() { return this.pos.x - (window.rendersize.x/2); }
2024-03-01 11:45:06 -06:00
2024-03-20 16:48:03 -05:00
this.zoom = 1;