Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 21, 2005, 1:38:34 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: importer: functionality improvement

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/graphics/importer/model.h

    r3911 r3913  
    101101  Material* material;   //!< Initial pointer to the Material. This can hold many materials, because Material can be added with Material::addMaterial(..)
    102102
     103  Material* findMaterialByName(const char* materialName);
     104
    103105  void cubeModel(void);
    104106
     
    115117  int getGroupCount() const;
    116118
     119  Material* addMaterial(Material* material);
     120  Material* addMaterial(const char* materialName);
     121
    117122  bool addGroup(const char* groupString);
    118123  bool addVertex(const char* vertexString);
     
    124129  bool addVertexTexture(const char* vTextureString);
    125130  bool addVertexTexture(float u, float v);
    126   bool addUseMtl(const char* mtlString);
    127   bool addUseMtl(Material* mtl);
     131  bool setMaterial(const char* mtlString);
     132  bool setMaterial(Material* mtl);
    128133  void finalize(void);
    129134};
Note: See TracChangeset for help on using the changeset viewer.