Ignore:
Timestamp:
07/17/15 13:34:28 (10 years ago)
Author:
epyon
Message:
  • mesh formats now support string loading via string_table
  • nmd string_table dump
  • fixes all around
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/formats/md2_loader.cc

    r424 r425  
    199199static bool s_md2_normal_ready = false;
    200200
    201 md2_loader::md2_loader() : m_md2( nullptr )
     201md2_loader::md2_loader( string_table* strings )
     202        : mesh_loader( strings ), m_md2( nullptr )
    202203{
    203204        if ( !s_md2_normal_ready )
     
    331332        uint16* icp        = &maccess.add_channel< index_u16 >( m_new_indexes.size() ).data()->index;
    332333
     334        maccess.set_name( make_name( "md2_mesh" ) );
     335
    333336        uint32 index = 0;
    334337        while ( frame_count > 0 )
Note: See TracChangeset for help on using the changeset viewer.