#preserved text only hides 1 title

1 messages · Page 1 of 1 (latest)

hollow scroll
#

i want to hide the 3 titles, but it only hides 1 of them, the third value in bindings array. now how do i hide 3 of them?

{
    "hud_title_text/title_frame/title": {
        "modifications": [
            {
                "array_name": "bindings",
                "operation":"insert_back",
                "value": [
                    {
                    "binding_type": "view",
                    "source_property_name": "((#text - 'qp:') = #text)",
                    "target_property_name": "#visible"
                    },
                    {
                    "binding_type": "view",
                    "source_property_name": "((#text - 'qd:') = #text)",
                    "target_property_name": "#visible"
                    },
                                        {
                    "binding_type": "view",
                    "source_property_name": "((#text - 'qt:') = #text)",
                    "target_property_name": "#visible"
                    }
                ]
            }
        ]
    },```
coral nimbus
#
    "hud_title_text/title_frame/title": {
        "modifications": [
            {
                "array_name": "bindings",
                "operation":"insert_back",
                "value": [
                    {
                    "binding_type": "view",
                    "source_property_name": "(#text - 'qp:' - 'qd:' - 'qt:' = #text)",
                    "target_property_name": "#visible"
                    }
                ]
            }
        ]
    },