That it works for keyboard suggests the issue may be on the Input System side, as it means AC is correctly reading the received input. Are you testing with the arrow keys, or WASD?
If you created a pair of new scenes to test the transition, try in…
(Quote)
Is that to say that this issue is only occuring in this particular scene?
If the Menu is displaying while set to appear During Gameplay, then is should only either because its been unlocked - or the game is not in Cutscene mode.
You can ch…
The easiest way to run an ActionList when the scene opens due to either way is to clear it from the Scene Manager, and instead attach the ActionList starter component.
From its Inspector, it's then just a case of checking both Run on scene start? a…
The Conversation and Subtitles menus need to rely on their own UI prefabs, and be locked to prevent them from showing. The ChatLogUI prefab is not intended to be linked to a Menu - instead, it is its own entity that gets spawned in via the Events E…
Here's a custom Action that will show the last option if all others are either invisible, or have been previously chosen:
using UnityEngine;namespace AC{ [System.Serializable] public class ActionConversationLastOption : Action { pub…
This is the intended behaviour. OnStart will be run when the scene is opened through natural gameplay, and OnLoad will be run when the scene is opened due to loading a save-file.
I cannot reproduce such behaviour. Are you using the latest release?
Can you share a screenshot of the ActionList involved, stripped down to the minimum needed for the issue to occur?
Welcome to the community, @rubiner.
Unlike regular Subtitles menus, the Chat Log will be displayed on-screen based on command. It needs to be explicitly told when to turn on and off, and this can be done with the template's provided ChatLog_Show a…
It's designed to replace both scripts. It's named BrightnessController as it's intended to be a replacement.
You'll need to update the Slider to have it control the Option-linked Variable's value. If it doesn't appear to work, keep the Variables …
When you say the character does not move at all, is this at all, only after a scene transition, or only when inside a speciic scene?
With Input System, the controls are stored in the EventSystem prefab assigned in the Menu Manager, which AC will sp…
With Unity UI-based Menus, this comes as standard - you can configure the Button component's Transition settings to fade between colours (including invisible) when interacted with.
It's possible - if your Active Input Handling is set to Both, then both Input Manager and Input System will be able to affect input. If you're getting unwanted behaviour, try setting it to Input System so that Input Manager has no effect.
1) Text from a Canvas will only be picked up automatically if it's linked to an AC Menu.
To pull non-AC text into the Speech Manager, you'll need a custom script that implements ITranslatable. The Manual's "Custom translatables" chapter …
You can create custom Options settings by linking them to a Global Variable.
Create a new Float variable named Brightness, then set its Link to property to Options Data. It's value will then be stored in the Profile data, along with Volume, Subtit…
"Touch events" as in specific touch inputs, or all touch input?
Try enabling Use Enhanced Touch Support in the EventSystem_InputSystem prefab the template generated.
Can you share screenshots to illustrate the way the two Menus overlap? I cannot reproduce this using the default Pause and Options menus (changing the Pause menu's Options button to run an ActionList that turns on Options without crossfading).