Search found 5 matches
- Wed Feb 12, 2025 12:57 pm
- Forum: Dialogue System for Unity
- Topic: Switching action map disables interaction
- Replies: 13
- Views: 5770
Re: Switching action map disables interaction
Solution: add this script to Response Button Template in template using UnityEngine; public class UISchemeChanger : MonoBehaviour { private void OnEnable() { (GameCanvasInstance.Instance as GameCanvas).SetCurrent(gameObject); } private void OnDisable() { (GameCanvasInstance.Instance as GameCanvas).S...
- Fri Feb 07, 2025 4:13 pm
- Forum: Dialogue System for Unity
- Topic: Switching action map disables interaction
- Replies: 13
- Views: 5770
Re: Switching action map disables interaction
I found out exactly what stops working if you use PlayerInputWrapper.PlayerInput.SwitchCurrentActionMap("UI"); Unfortunately, I was not given permission to send the project files. DialogueUI stops working if this code is triggered. Regardless of whether the dialogues were turned on before ...
- Fri Feb 07, 2025 4:14 am
- Forum: Dialogue System for Unity
- Topic: Switching action map disables interaction
- Replies: 13
- Views: 5770
Re: Switching action map disables interaction
I found out exactly what stops working if you use PlayerInputWrapper.PlayerInput.SwitchCurrentActionMap("UI");
- Thu Feb 06, 2025 10:55 am
- Forum: Dialogue System for Unity
- Topic: Switching action map disables interaction
- Replies: 13
- Views: 5770
Re: Switching action map disables interaction
I will describe the situation in more detail. I'm using EventSystem UI InputModul with my custom Actions Asset. В скрипте меняю ActionMap when any ui menu turns on or off. private IEnumerator SwitchInputAction(GameObject gameObject) { yield return new WaitForSecondsRealtime(0.1f); if (gameObject) { ...
- Thu Feb 06, 2025 7:50 am
- Forum: Dialogue System for Unity
- Topic: Switching action map disables interaction
- Replies: 13
- Views: 5770
Re: Switching action map disables interaction
Hi.
Has anyone found a solution?
I have the same problem. I can't solve it in any way.
Has anyone found a solution?