some kinda merge

This commit is contained in:
the me 2022-08-19 15:06:05 -07:00
commit f53d693a0c
14 changed files with 17 additions and 12 deletions

View File

@ -1 +0,0 @@
23.71898078918457 , 16.358203887939453 , 1.5586051940917969

Binary file not shown.

Before

Width:  |  Height:  |  Size: 385 KiB

View File

@ -1 +0,0 @@
13.828370094299316 , 11.73211669921875 , 3.921311855316162

Binary file not shown.

Before

Width:  |  Height:  |  Size: 635 KiB

Binary file not shown.

View File

@ -0,0 +1 @@
23.718978881835938 , 16.35820198059082 , 1.6182538270950317

Binary file not shown.

After

Width:  |  Height:  |  Size: 393 KiB

Binary file not shown.

View File

@ -0,0 +1 @@
13.828370094299316 , 11.73211669921875 , 3.961841344833374

Binary file not shown.

After

Width:  |  Height:  |  Size: 635 KiB

View File

@ -177,12 +177,12 @@
"IncludedFiles": [
{"CopyToMask":-1,"filePath":"datafiles","resourceVersion":"1.0","name":"shrine thing tex.png","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles","resourceVersion":"1.0","name":"shrine thing.dat","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Map 1","resourceVersion":"1.0","name":"Map 1.dat","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Map 1","resourceVersion":"1.0","name":"Map 1.size","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Map 1","resourceVersion":"1.0","name":"MapAtlas.png","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Test Map","resourceVersion":"1.0","name":"GBA Test.dat","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Test Map","resourceVersion":"1.0","name":"GBA Test.size","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/Test Map","resourceVersion":"1.0","name":"GBATestAtlas.png","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/map1","resourceVersion":"1.0","name":"map1.dat","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/map1","resourceVersion":"1.0","name":"map1.size","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/map1","resourceVersion":"1.0","name":"mapatlas.png","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/testmap","resourceVersion":"1.0","name":"gbatest.dat","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/testmap","resourceVersion":"1.0","name":"gbatest.size","resourceType":"GMIncludedFile",},
{"CopyToMask":-1,"filePath":"datafiles/testmap","resourceVersion":"1.0","name":"gbatestatlas.png","resourceType":"GMIncludedFile",},
],
"MetaData": {
"IDEVersion": "2.3.3.574",

View File

@ -17,6 +17,7 @@ global.gh = 360;
global.camerax = 0;
global.cameray = 0;
state = st_control;
cursor = new vec2(0, 0);
//these are functions bc c_2dto3d uses them
function getProj(){
return matrix_build_projection_perspective_fov(60,-16/9,1,4000)
@ -37,11 +38,14 @@ function setCam(){
global.turn = ARMY.US;
function drawModels(){
gpu_set_cullmode(cull_counterclockwise);
//gpu_set_cullmode(cull_counterclockwise);
gpu_set_ztestenable(true);
gpu_set_alphatestenable(true);
gpu_set_alphatestref(128);
for(var i = 0; i < array_length(models);i++){
models[i].draw();
}
gpu_set_alphatestenable(false);
gpu_set_cullmode(cull_noculling);
gpu_set_ztestenable(false);
}
@ -49,7 +53,8 @@ function drawModels(){
models = [];
//var spr = sprite_add("./shrine thing tex.png",0,false,false,0,0);
var spr = sprite_add("./Map 1/MapAtlas.png",0,false,false,0,0);
nu Model("./Map 1/Map 1.dat",spr);
textbox_create(txt_test);
textbox_create(txt_test);
var spr = sprite_add("./map1/mapatlas.png",0,false,false,0,0);
nu Model("./map1/map1.dat", spr, u, 200, 140, u, .65, u, u, u,);
setCam();