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-05-01 16:59:54 +0000
committerStijn Buys <ingar@osirion.org>2008-05-01 16:59:54 +0000
commita22542f273de28d06ecaf2bd6fd741821e98512b (patch)
tree54ed82cf99f8bfe517c3ab418e1f62beac688d96 /src/core/model.h
parent4e5343ce9aa83a5c0b04bf744dd287fb56ff39fc (diff)
lights offset and frequency
Diffstat (limited to 'src/core/model.h')
-rw-r--r--src/core/model.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/model.h b/src/core/model.h
index 60746ae..1c56982 100644
--- a/src/core/model.h
+++ b/src/core/model.h
@@ -120,10 +120,19 @@ public:
inline math::Color const & color() const { return light_color; };
inline bool strobe() const { return light_strobe; }
+
+ inline float radius() const { return light_radius; }
+
+ inline float offset() const { return light_offset; }
+
+ inline float frequency() const { return light_frequency; }
math::Vector3f light_location;
math::Color light_color;
bool light_strobe;
+ float light_radius;
+ float light_frequency;
+ float light_offset;
};