Project-Pandora-Game / pandora

https://project-pandora.com
Other
11 stars 3 forks source link

Condition "view" for characterPositionOverrides not working #721

Closed ClaudiaMia closed 4 months ago

ClaudiaMia commented 4 months ago

I want to allow people in the large cage to turn around. but this needs a different character position so that the legs do not clash with the door.

For this I have:

{
            type: 'slot',
            slot: 'character_slot_middle',
            characterPosition: {
                offsetX: 0,
                offsetY: -180,
            },
            characterPositionOverrides: [
                {
                    position: {
                        offsetX: 0,
                        offsetY: 130,
                    },
                    condition: [
                        [
                            { view: 'back' },
                        ],
                    ],
                },
            ],
        },

But the condition is not working. No values have any noticeable effect, but there is also no error.