File: features

package info (click to toggle)
blobandconquer 1.11-dfsg%2B20-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 89,720 kB
  • sloc: cpp: 39,033; ansic: 362; makefile: 143
file content (63 lines) | stat: -rw-r--r-- 722 bytes parent folder | download | duplicates (6)
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
55
56
57
58
59
60
61
62
63
// Definition file for features in the game

Feature {

	type = FEATURE_SPAWNER;
	color = 0.0 0.0 0.0 1.0;
	segments = 8;
	radius = 1;
	height = 1;

};

Feature {

	type = FEATURE_TELEPORTER;
	color = 0.25 0.25 0.25 1.0;
	segments = 8;
	radius = 10;
	height = 50;

};

Feature {

	type = FEATURE_SAVE_POINT;
	color = 0.5 0.5 1.0 1.0;
	segments = 8;
	radius = 10;
	height = 50;

};

Feature {

	type = FEATURE_EXIT;
	color = 1.0 0 0.0 1.0;
	segments = 8;
	radius = 10;
	height = 50;

};

Feature {

	type = FEATURE_INFORMATION;
	color = 1.0 1.0 0.0 1.0;
	segments = 6;
	radius = 4;
	height = 10;

};

Feature {

	type = FEATURE_GRAPPLE_POINT;
	color = 0.0 1.0 0.0 0.5;
	segments = 16;
	radius = 16;
	height = 2;

};

@END@