- Timestamp:
- Apr 12, 2005, 9:36:12 AM (20 years ago)
- Location:
- orxonox/branches/textEngine/src
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/textEngine/src/Makefile.am
r3781 r3782 33 33 track_manager.cc \ 34 34 track_node.cc \ 35 animation.cc \ 35 36 simple_animation.cc \ 36 37 garbage_collector.cc \ -
orxonox/branches/textEngine/src/Makefile.in
r3781 r3782 56 56 command_node.$(OBJEXT) keynames.$(OBJEXT) camera.$(OBJEXT) \ 57 57 track_manager.$(OBJEXT) track_node.$(OBJEXT) \ 58 simple_animation.$(OBJEXT) garbage_collector.$(OBJEXT) \59 story_entity.$(OBJEXT) campaign.$(OBJEXT) world.$(OBJEXT) \60 world_entity.$(OBJEXT) player.$(OBJEXT) environment.$(OBJEXT) \61 skysphere.$(OBJEXT) terrain.$(OBJEXT) weapon.$(OBJEXT) \62 projectile.$(OBJEXT) character_attributes.$(OBJEXT) \63 test_gun.$(OBJEXT) ai.$(OBJEXT) p_node.$(OBJEXT) \64 null_parent.$(OBJEXT) helper_parent.$(OBJEXT) \58 animation.$(OBJEXT) simple_animation.$(OBJEXT) \ 59 garbage_collector.$(OBJEXT) story_entity.$(OBJEXT) \ 60 campaign.$(OBJEXT) world.$(OBJEXT) world_entity.$(OBJEXT) \ 61 player.$(OBJEXT) environment.$(OBJEXT) skysphere.$(OBJEXT) \ 62 terrain.$(OBJEXT) weapon.$(OBJEXT) projectile.$(OBJEXT) \ 63 character_attributes.$(OBJEXT) test_gun.$(OBJEXT) ai.$(OBJEXT) \ 64 p_node.$(OBJEXT) null_parent.$(OBJEXT) helper_parent.$(OBJEXT) \ 65 65 data_tank.$(OBJEXT) graphics_engine.$(OBJEXT) light.$(OBJEXT) \ 66 66 text_engine.$(OBJEXT) array.$(OBJEXT) objModel.$(OBJEXT) \ … … 74 74 depcomp = $(SHELL) $(top_srcdir)/depcomp 75 75 am__depfiles_maybe = depfiles 76 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ai.Po ./$(DEPDIR)/a rray.Po \77 @AMDEP_TRUE@ ./$(DEPDIR)/ base_entity.Po \76 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ai.Po ./$(DEPDIR)/animation.Po \ 77 @AMDEP_TRUE@ ./$(DEPDIR)/array.Po ./$(DEPDIR)/base_entity.Po \ 78 78 @AMDEP_TRUE@ ./$(DEPDIR)/base_object.Po ./$(DEPDIR)/camera.Po \ 79 79 @AMDEP_TRUE@ ./$(DEPDIR)/campaign.Po \ … … 241 241 track_manager.cc \ 242 242 track_node.cc \ 243 animation.cc \ 243 244 simple_animation.cc \ 244 245 garbage_collector.cc \ … … 408 409 409 410 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ai.Po@am__quote@ 411 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/animation.Po@am__quote@ 410 412 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/array.Po@am__quote@ 411 413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/base_entity.Po@am__quote@ -
orxonox/branches/textEngine/src/animation.h
r3781 r3782 23 23 #define _ANIMATION_H 24 24 25 #include "base_object.h" 25 26 // FORWARD DEFINITION 27 template<class T> class tList; 26 28 27 29 enum ANIM_FUNCTION {ANIM_LINEAR }; 28 30 31 class Anim 32 { 33 protected: 34 Anim(); 35 36 static tList<Anim>* animatorList; 37 }; 38 39 29 40 //! A Class to handle some animation for single floated values. 30 template<class T> class Animation : public BaseObject41 template<class T> class Animation : public Anim 31 42 { 32 43 public: … … 56 67 Animation<T>::Animation () 57 68 { 58 this->setClassName ("Animation");59 69 this->value = 0.0; 60 70 }
Note: See TracChangeset
for help on using the changeset viewer.