Changeset 10266
- Timestamp:
- 05/25/09 14:04:29 (4 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/include/osgAnimation/Timeline
r10026 r10266 153 153 unsigned int _loop; 154 154 155 enum Status155 enum ActionStatus 156 156 { 157 157 Play, … … 159 159 }; 160 160 161 Status _state;161 ActionStatus _state; 162 162 }; 163 163 … … 172 172 Timeline(const Timeline& nc,const osg::CopyOp& op = osg::CopyOp::SHALLOW_COPY); 173 173 174 enum Status174 enum TimelineStatus 175 175 { 176 176 Play, … … 178 178 }; 179 179 180 Status getStatus() const { return _state; }180 TimelineStatus getStatus() const { return _state; } 181 181 182 182 typedef std::pair<unsigned int, osg::ref_ptr<Action> > FrameAction; … … 327 327 bool _initFirstFrame; 328 328 329 Status _state;329 TimelineStatus _state; 330 330 331 331 // to manage pending operation
