Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-08-01 13:08:27 +0000
committerStijn Buys <ingar@osirion.org>2008-08-01 13:08:27 +0000
commitcc335cfbf13a6b21c5f65febc6049eb5d4c16b63 (patch)
tree5ae976b9fd3bdc11e0ccfc9d8db061751a7503d8 /src/model/engine.h
parent8ddeb66959f5a40192940260932636196ab8151f (diff)
model->enginecolor(), removed autolevel, added selection delay
Diffstat (limited to 'src/model/engine.h')
-rw-r--r--src/model/engine.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/model/engine.h b/src/model/engine.h
index c3e6064..724c060 100644
--- a/src/model/engine.h
+++ b/src/model/engine.h
@@ -27,11 +27,6 @@ public:
return engine_location;
}
- inline math::Color const & color() const
- {
- return engine_color;
- }
-
inline float radius() const
{
return engine_radius;
@@ -46,11 +41,24 @@ public:
{
return render_texture;
}
+
+ inline bool noflare() const
+ {
+ return engine_noflare;
+ }
+
+ inline bool notrail() const
+ {
+ return engine_notrail;
+ }
math::Vector3f engine_location;
float engine_radius;
- math::Color engine_color;
unsigned int engine_flare;
+
+
+ bool engine_noflare;
+ bool engine_notrail;
unsigned int render_texture;
};