prosperon/scripts/camera2d.jso

29 lines
669 B
Plaintext
Raw Normal View History

this.phys = physics.kinematic;
this.dir_view2world = function(dir) { return dir.scale(this.realzoom()); };
this.view2world = function(pos) { return cmd(137,pos); };
this.world2view = function(pos) { return cmd(136,pos); };
this.realzoom = function() { return cmd(135); };
2024-03-01 11:45:06 -06:00
this.right = function()
{
2024-03-14 09:33:15 -05:00
return this.pos.x + (Window.rendersize.x/2);
2024-03-01 11:45:06 -06:00
}
this.left = function()
{
2024-03-14 09:33:15 -05:00
return this.pos.x - (Window.rendersize.x/2);
2024-03-01 11:45:06 -06:00
}
this.mixin({
get zoom() {
// var z = Game.native.y / Window.dimensions.y;
return cmd(135);///z;
},
set zoom(x) {
x = Math.clamp(x,0.1,10);
// var z = Game.native.y / Window.dimensions.y;
// z *= x;
cmd(62,x);
},
});