Changeset 565

Show
Ignore:
Timestamp:
04/23/08 14:21:46 (9 months ago)
Author:
phill
Message:

o Some changes.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/morph-targets/x42maya/modelexporter.cpp

    r564 r565  
    3434        if( status != MS::kSuccess ) 
    3535                throw maya_error( status ); 
     36} 
     37 
     38MObject path_node( const MDagPath &path ) 
     39{ 
     40        MStatus stat; 
     41         
     42        MObject ret = path.node( &stat ); 
     43        check_status( stat ); 
     44 
     45        return ret; 
    3646} 
    3747 
  • branches/morph-targets/x42maya/translator.h

    r564 r565  
    5151 
    5252void check_status( MStatus status ); 
     53MObject path_node( const MDagPath &path ); 
    5354 
    5455typedef make::simple_api_tag< MObject > obj_tag; 
     
    110111        float group_split_factor; 
    111112        make::geometry::optimize_type preferred_geometry_type; 
     113 
     114        bone_ptr import_bone( const MDagPath &path ); 
    112115}; 
    113116 
  • branches/morph-targets/x42maya/x42maya.vcproj

    r559 r565  
    663663                        > 
    664664                        <File 
     665                                RelativePath=".\modelexporter-gather.cpp" 
     666                                > 
     667                        </File> 
     668                        <File 
    665669                                RelativePath=".\modelexporter.cpp" 
    666670                                >