]> git.localhorst.tv Git - blank-assets.git/blobdiff - data/default.models
player and monster model
[blank-assets.git] / data / default.models
diff --git a/data/default.models b/data/default.models
new file mode 100644 (file)
index 0000000..2b1d425
--- /dev/null
@@ -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 ];
+               }];
+       };
+};