Exactly, I can get those from querying the description of all objectives.
Another solution might be to add an excludeFromExport member to SpeechLine itself, that you could just check when exporting.
I see, might I suggest an event be added to EventManager to allow folks to intercept the export process? Something like:
EventManager.BeforeTextExported += exportInfo =>{exportInfo.SpeechLinesToExport = exportInfo.SpeechLinesToExport .Where(o…
@ChrisIceBox Thanks for looking into it!
@Rairun That's an interesting point, and I don't actually know how the translator will handle things their end. I just verify the CSV file using Excel, and from there, I see no clear way of spotting what has…
I looked at all your calls to Quaternion.LookRotation and found that adding the if-statement from the link here got rid of all the messages 👍
Line 3972 in Char.cs:
public Quaternion GetTargetRotation (){ if (lookDirection == Vector3.zero) …
There is no stack trace or any other text associated with these log messages.
As for the source, you're gonna have to google it or look at the link. But on Unity 2021.2.9 (on win), I just need to play (on any scene), and it's the first thing that i…
It might be helpful to know that I've been using 2021.2 since release without any (AC related) problems. Having said that - LTS really is the way to go.
Thanks for your comment, it set me on the right path.
I figured out that this happens if I hit the shortcut for playing while the mouse cursor is over a window like Hierarchy or Project, and the shortcut is something that that window has registered…
Thanks, but there are two problems I'm trying to solve:
* saving the pos
* being able to change back to the original pos
If I use this action it will be easy to change back to the original pos, but the fact that the transform was changed won't …
Same result when moved to to ACs actions, but I figured out the reason though:
I was setting the fields category, title, description instead of the properties which seem to be the new way of doing it. Setting the fields resulted in duplicate titles…