X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=data%2Fdefault.models;fp=data%2Fdefault.models;h=2b1d425fed36e531d212c4a24946bdd3fd062d87;hb=d674aafba34e07b520dfdf8c549a1669ca846346;hp=0000000000000000000000000000000000000000;hpb=ce188a87e4759cd31639da023fdf69ad9feea94c;p=blank-assets.git diff --git a/data/default.models b/data/default.models new file mode 100644 index 0000000..2b1d425 --- /dev/null +++ b/data/default.models @@ -0,0 +1,32 @@ +player = { + root = { + shape = player_body; + textures = [ "rock-1" ]; + children = [ + { + shape = player_head; + position = [ 0, 0.375, 0 ]; + textures = [ "rock-1", "rock-face" ]; + } + ]; + }; +}; + +monster = { + root = { + shape = player_body; + textures = [ "rock-1" ]; + rgb_mod = [ 1, 1, 0 ]; + children = [{ + shape = player_head; + position = [ -0.275, 0.375, 0 ]; + textures = [ "rock-1", "rock-face" ]; + rgb_mod = [ 1, 0, 0 ]; + }, { + shape = player_head; + position = [ 0.275, 0.375, 0 ]; + textures = [ "rock-1", "rock-face" ]; + rgb_mod = [ 1, 0.5, 0 ]; + }]; + }; +};