Unity-Technologies / UnityDataTools

Experimental tools and libraries for reading and analyzing Unity data files.
Other
575 stars 50 forks source link

ShaderHandler.cs m_InsertSubProgramCommand need to put id in #8

Closed GeorgeVan closed 1 year ago

GeorgeVan commented 1 year ago

"INSERT INTO shader_subprograms(shader, sub_shader, pass, pass_name, sub_program, hw_tier, shader_type, api) VALUES(@shader, @sub_shader, @pass, @pass_name, @sub_program, @hw_tier, @shader_type, @api)";

Should be:

"INSERT INTO shader_subprograms(id, shader, sub_shader, pass, pass_name, sub_program, hw_tier, shader_type, api) VALUES(@id, @shader, @sub_shader, @pass, @pass_name, @sub_program, @hw_tier, @shader_type, @api)";

francis-page commented 1 year ago

Thanks for reporting this! It's fixed.