Last change
on this file since 8076 was
7836,
checked in by bensch, 18 years ago
|
trunk: merged the Atmos back again, because a ClassID was wrong
|
File size:
1.1 KB
|
Rev | Line | |
---|
[7381] | 1 | |
---|
| 2 | |
---|
| 3 | /* |
---|
| 4 | orxonox - the future of 3D-vertical-scrollers |
---|
| 5 | |
---|
| 6 | Copyright (C) 2004 orx |
---|
| 7 | |
---|
| 8 | This program is free software; you can redistribute it and/or modify |
---|
| 9 | it under the terms of the GNU General Public License as published by |
---|
| 10 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 11 | any later version. |
---|
| 12 | |
---|
| 13 | ### File Specific: |
---|
| 14 | main-programmer: hdavid, amaechler |
---|
| 15 | */ |
---|
| 16 | |
---|
| 17 | |
---|
| 18 | #include "sun_effect.h" |
---|
| 19 | |
---|
| 20 | #include "util/loading/load_param.h" |
---|
| 21 | |
---|
| 22 | |
---|
| 23 | using namespace std; |
---|
| 24 | |
---|
| 25 | |
---|
| 26 | |
---|
| 27 | /** |
---|
| 28 | * @param root The XML-element to load the SunEffect from |
---|
| 29 | */ |
---|
| 30 | SunEffect::SunEffect(const TiXmlElement* root) |
---|
| 31 | { |
---|
[7836] | 32 | // this->setClassID(CL_SUN_EFFECT, "SunEffect"); |
---|
[7381] | 33 | this->bActivated = false; |
---|
| 34 | } |
---|
| 35 | |
---|
| 36 | |
---|
| 37 | /** |
---|
| 38 | * destroys a SunEffect |
---|
| 39 | */ |
---|
[7383] | 40 | SunEffect::~SunEffect() |
---|
[7381] | 41 | { |
---|
| 42 | |
---|
| 43 | } |
---|
| 44 | |
---|
| 45 | |
---|
| 46 | /** |
---|
| 47 | * @param root The XML-element to load the SunEffect from |
---|
| 48 | */ |
---|
| 49 | void SunEffect::loadParams(const TiXmlElement* root) |
---|
| 50 | { |
---|
| 51 | BaseObject::loadParams(root); |
---|
| 52 | } |
---|
| 53 | |
---|
| 54 | |
---|
| 55 | /** |
---|
| 56 | * initializes the graphics effect |
---|
| 57 | */ |
---|
| 58 | bool SunEffect::init() |
---|
| 59 | {} |
---|
| 60 | |
---|
| 61 | |
---|
| 62 | |
---|
| 63 | /** |
---|
| 64 | * draws the effect, if needed |
---|
| 65 | */ |
---|
| 66 | void SunEffect::draw() const |
---|
| 67 | {} |
---|
| 68 | |
---|
| 69 | |
---|
| 70 | |
---|
| 71 | /** |
---|
| 72 | * ticks the effect if there is any time dependancy |
---|
| 73 | */ |
---|
| 74 | void SunEffect::tick(float dt) |
---|
| 75 | {} |
---|
| 76 | |
---|
Note: See
TracBrowser
for help on using the repository browser.