Skip to content

Commit

Permalink
Expose animation parameters (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
karjonas committed Jul 31, 2018
1 parent 20e2173 commit ded3a8b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions brayns/parameters/AnimationParameters.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ class AnimationParameters : public AbstractParameters

void setUnit(const std::string& unit) { _updateValue(_unit, unit); }
void setDt(const double dt) { _updateValue(_dt, dt); }
double getDt() const { return _dt; }
uint32_t getStart() const { return _start; }
private:
void parse(const po::variables_map& vm) final;

Expand Down

0 comments on commit ded3a8b

Please sign in to comment.