I was reading through the filament documentation and they give the comamnd to out .mat files from the jsonish material definition like this :
matc --reflect parameters filament/src/materials/skybox.mat
I have two questions, how do I install this matc tool and after making the .mat file, how do I reference it to make the renderablemesh use it?
matcis the material compiler tool which you have to download from the filament repository release page.matc -p mobile -a opengl -o baked_color.filamat baked_color.mat. This command is building formobileplatform andopenglas graphics engine where input file isbaked_color.matand the output file isbaked_color.filamat.To know more about
matccommands, visit this site.