01-09-2025, 07:54 AM
Okay, after carefully comparing the quad files, I have indeed found a change that's been made to the format which I don't believe any publicly available version of the quad player supports. The 'blend' section of the file has been updated and now looks like this:
The version of the 'blend' node from the examples that come with the v5 quad player look like this:
If you replace the 'blend' node on the generated quad file with the older version above, it can be opened in v5 of the quad player, so clearly it looks like the tools are producing quad files that are not compatible with any publicly available version of the player (that I'm aware of anyway).
Where do I get the compatible version of the quad player?
Code:
"blend" : [
{
"name" : "normal" ,
"mode_rgb" : [ "FUNC_ADD" , "SRC_ALPHA" , "ONE_MINUS_SRC_ALPHA" ] ,
"mode_alpha" : [ "FUNC_ADD" , "ONE" , "ONE_MINUS_SRC_ALPHA" ] ,
"debug" : [ "SRC.rgb * SRC.a + DST.rgb * (1 - SRC.a)" , "SRC.a + DST.a * (1 - SRC.a)" ]
}
] ,
The version of the 'blend' node from the examples that come with the v5 quad player look like this:
Code:
"blend" : [
{
"name" : "default" ,
"mode" : [ "FUNC_ADD" , "SRC_ALPHA" , "ONE_MINUS_SRC_ALPHA" ]
}
] ,
If you replace the 'blend' node on the generated quad file with the older version above, it can be opened in v5 of the quad player, so clearly it looks like the tools are producing quad files that are not compatible with any publicly available version of the player (that I'm aware of anyway).
Where do I get the compatible version of the quad player?