Needed a break from my work. Something like this work for you? I think adding that text it creates with the \n should work for UI text if ur setting the text with a string.
—————————————–
using NodeCanvas.Framework;
using ParadoxNotion.Design;
using UnityEngine;
namespace NodeCanvas.Tasks.Actions{
[Category(“String”)]
public class ConcatenateString : ActionTask<Transform> {
public BBParameter<bool> addEndLine = false;
[RequiredField]
public BBParameter<string> string1;
public BBParameter<string> string2;
[BlackboardOnly]
public BBParameter<string> newString;
Thank you very much for this. Sorry to bother but I am getting both strings in the same line without separator. What I would like is to have the choice to make two lines. Attached pictures
Kind regards