blob: 175e0ec4bdcffe9d375a2d03f028a8fb7cebbc40 (
plain) (
blame)
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
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//
//=============================================================================//
#ifndef SMOKE_FOG_OVERLAY_H
#define SMOKE_FOG_OVERLAY_H
#include "basetypes.h"
#include "mathlib/vector.h"
#include "smoke_fog_overlay_shared.h"
#define ROTATION_SPEED 0.1
#define TRADE_DURATION_MIN 10
#define TRADE_DURATION_MAX 20
#define SMOKEGRENADE_PARTICLERADIUS 80
#define SMOKESPHERE_EXPAND_TIME 1 // Take N seconds to expand to SMOKESPHERE_MAX_RADIUS.
#define NUM_PARTICLES_PER_DIMENSION 4
#define SMOKEPARTICLE_OVERLAP 20
#define SMOKEPARTICLE_SIZE 80
#define NUM_MATERIAL_HANDLES 1
void InitSmokeFogOverlay();
void TermSmokeFogOverlay();
void DrawSmokeFogOverlay();
// Set these before calling DrawSmokeFogOverlay.
extern float g_SmokeFogOverlayAlpha;
extern Vector g_SmokeFogOverlayColor;
#endif
|