-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
54 lines (54 loc) · 829 Bytes
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"cell_speed": {
"male": 1.6,
"female": 1.5,
"tired_female": 1.0,
"child": 2.0,
"hunter": 1.7
},
"cell_rotation_speed": {
"male": 0.4,
"female": 0.4,
"tired_female": 0.2,
"child": 0.4,
"hunter": 0.6
},
"sights": {
"male": 25.0,
"female": 10.0,
"child": 20.0,
"hunter": 30.0
},
"hunter_fov": 1.57079632679,
"hunter_kill_range": 2.0,
"wall_detect_range": 10.0,
"world_size": 60.0,
"cell_size": 3.0,
"tired_time": 60000,
"growth_time": 80000,
"hunter_lifetime": 200000,
"cells": [
{
"state": "Male",
"position": {
"x": -20.0,
"y": 0.0
},
"direction": {
"x": 0.78539816339,
"y": 0.78539816339
}
},
{
"state": "Female",
"position": {
"x": 20.0,
"y": 0.0
},
"direction": {
"x": -0.78539816339,
"y": 0.78539816339
}
}
]
}