5 "name":"Skaterift .mdl exporter",
6 "author": "Harry Godden (hgn)",
13 "category":"Import/Export",
16 out
= open( F
'{os.path.dirname(__file__)}/_combined.py', 'w' )
20 path
= F
'{os.path.dirname(__file__)}/{file}'
22 src
= open( path
, "r" )
23 out
.write( F
'\n# #include "{file}"\n\n' )
24 out
.write( src
.read() )
28 _include( "sr_main.py" )
29 _include( "sr_so.py" )
30 _include( "sr_shader.py" )
31 _include( "sr_mat.py" )
35 from ._combined
import *
37 if 'bpy' in locals(): importlib
.reload( _combined
)