Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 17, 2007, 1:51:22 PM (17 years ago)
Author:
stefalie
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/blink/src/world_entities/effects/blink.h

    r10175 r10253  
    2121    void loadParams(const TiXmlElement* root);
    2222
    23     //void setSize(float sizeX, float sizeY);
     23    void setPosition(float x, float y, float z) { this->position = Vector(x, y, z); }
     24    void setSize(float s) { this->size = s; }
    2425    //void setTexture(const std::string& textureFile);
    2526
     
    2829
    2930  private:
    30     Material*        material;
     31    Material*         material;
     32    Vector            position;
     33    float             size;             //! only one float caus' its quadratical
    3134};
    3235
Note: See TracChangeset for help on using the changeset viewer.