Hello,
I'm trying to setup a shopkeeper/crafter using Opsive's Ultimate Inventory System.
One node contains the opencrafting sequence: OpenCrafting([crafter], [craftMenu], [playerInventory]).
This node has children, so the conversation doesn't end upon opening or closing the crafting menu.
However, the game unpauses upon closing the crafting menu and I regain character control with dialogue options still on the screen.
I end up having to finish the conversation with mouse movement both panning the camera and navigating the dialogue menu.
Any help is appreciated.
Timescale goes back to 1 mid-conversation (UIS shop/crafter)
Re: Timescale goes back to 1 mid-conversation (UIS shop/crafter)
Hi,
When UIS closes a menu panel whose "Set TimeScale To Zero When Menu Is Opened" checkbox is ticked, such as the shop/crafter panels, it always sets time scale to 1.
You can add a script to the Crafting/Shop Menu to set time scale back to 0 if a conversation is active. The example script below hooks into the menu's DisplayPanel component > OnPanelClose() event:
When UIS closes a menu panel whose "Set TimeScale To Zero When Menu Is Opened" checkbox is ticked, such as the shop/crafter panels, it always sets time scale to 1.
You can add a script to the Crafting/Shop Menu to set time scale back to 0 if a conversation is active. The example script below hooks into the menu's DisplayPanel component > OnPanelClose() event:
Code: Select all
using System.Collections;
using UnityEngine;
using Opsive.UltimateInventorySystem.UI.Panels;
using PixelCrushers.DialogueSystem;
[RequireComponent(typeof(DisplayPanel))]
public class RemainPausedIfConversationActive : MonoBehaviour
{
private void Start()
{
GetComponent<DisplayPanel>().OnClose += CheckConversationOnClose;
}
private void CheckConversationOnClose()
{
if (DialogueManager.isConversationActive)
{
StartCoroutine(PauseAtEndOfFrame());
}
}
private IEnumerator PauseAtEndOfFrame()
{
yield return new WaitForEndOfFrame();
Time.timeScale = 0;
}
}
Re: Timescale goes back to 1 mid-conversation (UIS shop/crafter)
Thank you so much!