Search found 9 matches

by NyxGen
Fri Mar 17, 2017 1:48 pm
Forum: Dialogue System for Unity
Topic: Reset SimStatus of a whole conversation?
Replies: 3
Views: 612

Re: Reset SimStatus of a whole conversation?

Ah yes. I actually ended up writing almost exactly that method, however I _did_ modify the source so as to keep it alongside the other similarly named methods, and just made a note of it for if I ever perform an update to the plugin for this project.

Thanks for the info!
by NyxGen
Fri Mar 17, 2017 12:59 pm
Forum: Dialogue System for Unity
Topic: Reset SimStatus of a whole conversation?
Replies: 3
Views: 612

Reset SimStatus of a whole conversation?

Our game has a system in place where a player can basically "fail" a conversation, and will be reset back to the beginning of the conversation. However, after this "reset", the SimStatus values for all of the dialog nodes previously visited are now set to "WasDisplayed"...
by NyxGen
Fri May 01, 2015 6:42 am
Forum: Dialogue System for Unity
Topic: How to get the responder's transform?
Replies: 12
Views: 2417

How to get the responder's transform?

Great- thanks for all of your help!
by NyxGen
Fri May 01, 2015 5:57 am
Forum: Dialogue System for Unity
Topic: How to get the responder's transform?
Replies: 12
Views: 2417

How to get the responder's transform?

I just got to implementing that patch- it works great! Thanks for the changes~ As a side note about the patch: It appears that a warning was put in when the actor and conversant are the same, so now we get these annoying warnings whenever one of our characters has a monologue -- is there a "mor...
by NyxGen
Wed Apr 29, 2015 8:21 am
Forum: Dialogue System for Unity
Topic: How to get the responder's transform?
Replies: 12
Views: 2417

How to get the responder's transform?

Awesome, thanks!  I'll look forward to that patch~
by NyxGen
Wed Apr 29, 2015 7:18 am
Forum: Dialogue System for Unity
Topic: How to get the responder's transform?
Replies: 12
Views: 2417

How to get the responder's transform?

That's not exactly what's going on, but it's close enough that it doesn't matter, heh ^^ Ah- that snippet looks like it's exactly what I need, except in the version I've got here, ConversationModel doesn't derive from MonoBehaviour-- is this something that changed recently? As a side note: is the li...
by NyxGen
Wed Apr 29, 2015 5:05 am
Forum: Dialogue System for Unity
Topic: How to get the responder's transform?
Replies: 12
Views: 2417

How to get the responder's transform?

I did actually look into this myself, briefly. Right now, I have things configured to not use "reminder" subtitles, so that parameter comes thru as null; however with my current implementation, it should be safe for me to change things so that I can use it. The big problem, however, is tha...
by NyxGen
Wed Apr 29, 2015 4:20 am
Forum: Dialogue System for Unity
Topic: How to get the responder's transform?
Replies: 12
Views: 2417

How to get the responder's transform?

Hi there~! Thanks for the response, but I think you might misunderstand my question-- the problem isn't with the displaying of individual subtitle lines (I've already got that working), but with the displaying of the responses. More specifically, what I'm doing, is providing "dialogue settings&...
by NyxGen
Tue Apr 28, 2015 11:23 am
Forum: Dialogue System for Unity
Topic: How to get the responder's transform?
Replies: 12
Views: 2417

How to get the responder's transform?

I'm trying to perform some custom actions when the responses are shown, but these actions differ depending on who the "responding actor" is, as I need to call GetComponent<>() on their GameObject and use some of those MonoBehaviours. It seems that all of the existing events and overridable...