]> git.localhorst.tv Git - blank-assets.git/blob - data/default.models
fiddled with models a bit
[blank-assets.git] / data / default.models
1 player = {
2         root = {
3                 shape = player_body;
4                 textures = [ "rock-1" ];
5                 children = [
6                         {
7                                 shape = player_head;
8                                 position = [ 0, 0.4, 0 ];
9                                 textures = [ "rock-1", "rock-face" ];
10                         }
11                 ];
12         };
13         eyes = 1;
14 };
15
16 monster = {
17         root = {
18                 shape = player_body;
19                 textures = [ "rock-1" ];
20                 rgb_mod = [ 1, 1, 0 ];
21                 children = [{
22                         position = [ 0, 0.4, 0 ];
23                         children = [{
24                                 shape = player_head;
25                                 position = [ -0.275, 0, 0 ];
26                                 textures = [ "rock-1", "rock-face" ];
27                                 rgb_mod = [ 1, 0, 0 ];
28                         }, {
29                                 shape = player_head;
30                                 position = [ 0.275, 0, 0 ];
31                                 textures = [ "rock-1", "rock-face" ];
32                                 rgb_mod = [ 1, 0.5, 0 ];
33                         }];
34                 }];
35         };
36         eyes = 1;
37 };