Hi,
nicmar wrote: ↑Wed Oct 09, 2019 3:23 pm1) How to I use the Body Text Template and Header Text Template, to insert what I want to write the same way it would be Actions > Alert Quest Action. Cause now it just shows as plain text, and it seems as if it's just added as a gameobject with text under Quest Alert UI > Content Panel. I'm thinking I should somehow reach the Unity UI Quest Alert UI script, but I'm not sure how to reference it and use the templates.
That's a little more complicated. You can do a lot with plain text. You can localize it by using a StringField, and you can use rich test codes to do things like set colors and formatting. If you're using TextMesh Pro, you can include sprites in your text. If you can get by with this, it's much simpler.
Otherwise you'll have to manage QuestContent objects like quests do. They're ScriptableObjects, and they require writing a custom editor. You can inherit most of the functionality from Quest Machine's existing editors, but you'll still have to write some editor code to put it together. If you need to do this, let me know and I'll provide details.
nicmar wrote: ↑Wed Oct 09, 2019 3:23 pm2) How can I catch the "New quest started" state? I tried QuestState.Active, but it gets triggered multiple times.
The message gets sent whenever the quest or one of its quest nodes changes state. Try this version, which also incorporates the suggestions in #1 above.
ReportQuestState.cs
Code: Select all
using UnityEngine;
using PixelCrushers;
using PixelCrushers.QuestMachine;
public class ReportQuestState : MonoBehaviour, IMessageHandler
{
[StringFieldTextArea]
public StringField questStartedMessage = new StringField("<color=green>Started: {QUEST}</color>");
[StringFieldTextArea]
public StringField questCompletedMessaged = new StringField("<color=red>Completed: {QUEST}</color>");
private void OnEnable()
{
MessageSystem.AddListener(this, QuestMachineMessages.QuestStateChangedMessage, string.Empty);
}
private void OnDisable()
{
MessageSystem.RemoveListener(this);
}
public void OnMessage(MessageArgs messageArgs)
{
var quest = QuestMachine.GetQuestInstance(messageArgs.parameter);
if (quest == null) return; // Invalid quest. Exit.
var isMainQuestState = StringField.IsNullOrEmpty(messageArgs.values[0] as StringField);
if (!isMainQuestState) return; // This message is for a quest node. Exit.
var questState = (QuestState)messageArgs.values[1];
switch (questState)
{
case QuestState.Active:
ShowAlert(questStartedMessage, quest);
break;
case QuestState.Successful:
ShowAlert(questCompletedMessaged, quest);
break;
}
}
public void ShowAlert(StringField message, Quest quest)
{
var s = message.value.Replace("{QUEST}", quest.title.value);
s = QuestMachineTags.ReplaceTags(s, quest);
QuestMachine.defaultQuestAlertUI.ShowAlert(s);
}
}
nicmar wrote: ↑Wed Oct 09, 2019 3:23 pm3) How can I override the animations when the alert panel opens using code? I'd like to use DoTween here instead of the animator. I see Show/Hide and the UIPanelAnimator. Should I somehow use the OnOpen and OnClose events of the UIPanel, and create a custom script on the same gameobject as the UIPanel?
Yes.
- Get rid of the show animation. Instead, assign a DOTween-powered method to OnOpen().
- Assign a DOTween-powered method to OnClose().
- Replace the hide animation with a blank animation that lasts for the same duration as your OnClose() method. This ensures that it keeps the GameObject active until the DOTween method finishes.