36 lines
784 B
Plaintext
36 lines
784 B
Plaintext
//c_addunit(un.chara, ARMY.US);
|
|
//c_addunit(un.kris, ARMY.THEM);
|
|
var i;
|
|
/*for (i=0; i<array_length(global.units[ARMY.US]); i++) {
|
|
c_inheritunit(2+i, 2, un.chara);
|
|
}*/
|
|
|
|
|
|
c_loadstageone();
|
|
|
|
selectedunit = noone;
|
|
hoveredunit = noone;
|
|
hspd = 0;
|
|
vspd = 0;
|
|
global.gw = 640;
|
|
global.gh = 360;
|
|
global.camerax = 0;
|
|
global.cameray = 0;
|
|
//these are functions bc c_2dto3d uses them
|
|
function getProj(){
|
|
return matrix_build_projection_perspective_fov(60,-16/9,1,4000)
|
|
}
|
|
function getView(){
|
|
var _x = global.camerax;
|
|
var _y = global.cameray;
|
|
var half = (7.5*32)+40;
|
|
return matrix_build_lookat(_x,_y+180,150,_x,_y,0,0,0,-1);
|
|
}
|
|
|
|
function setCam(){
|
|
var cam = camera_get_active();
|
|
camera_set_proj_mat(cam,getProj());
|
|
camera_set_view_mat(cam,getView())
|
|
camera_apply(cam);
|
|
}
|
|
global.turn = ARMY.US; |