Hi,
I'm afraid it says that video is unavailable. You can send a link or video file directly to tony (at) pixelcrushers.com if you prefer.
Problem with the scrollview
-
- Posts: 24
- Joined: Tue Nov 28, 2017 10:04 am
Re: Problem with the scrollview
Hi,
It appears that it's not calling the quest log window script's Open() method.
Would you please temporarily add this method to the TwoPanelQuestLogWindow.cs script?
Then play the scene again and try to open the quest log window. Let me know if the Console window logs:
The custom action "Dialogue System Quest Log Window" has this line:
If there's another Dialogue System quest log window, the action could be calling its Open() method instead. I don't think this is the case, but I thought I'd mention it.
Would it be possible to send a reproduction project to tony (at) pixelcrushers.com?
It appears that it's not calling the quest log window script's Open() method.
Would you please temporarily add this method to the TwoPanelQuestLogWindow.cs script?
Code: Select all
public override void Open()
{
Debug.Log("Called QuestLogWindow.Open!");
base.Open();
}
Code: Select all
Called QuestLogWindow.Open!
Code: Select all
FindObjectOfType<PixelCrushers.DialogueSystem.QuestLogWindow>().Open();
Would it be possible to send a reproduction project to tony (at) pixelcrushers.com?
Re: Problem with the scrollview
Hi,
Thanks for sending a reproduction project. There were two issues:
1. The ThirdPartyQuestLogWindow.cs (Adventure Creator action) script didn't work if AC paused the game. I fixed it and emailed you the updated script.
2. You need to hook up the close button ('X') with an AC menu button that turns off the menu. This way AC knows that the menu is closed.
Thanks for sending a reproduction project. There were two issues:
1. The ThirdPartyQuestLogWindow.cs (Adventure Creator action) script didn't work if AC paused the game. I fixed it and emailed you the updated script.
2. You need to hook up the close button ('X') with an AC menu button that turns off the menu. This way AC knows that the menu is closed.