In my game, there are "road signs" (i.e. starting a conversation with it will have it read "Route 2" or "Kentucky", and so on). Basically, a non-living readable object. Instead of creating an actor for each of these road signs, I was hoping to reuse one conversation and simply have the dialogue text display the name of the actor game object so that I can use the exact same road sign prefab while only changing the gameobject's name. Is this something that is possible? I've tried a number of solutions, and when debugging with the Info setting on, it did print the following:
Code: Select all
Dialogue System: Starting conversation 'Road Sign', actor=Route 2(UnityEngine.Transform), conversant=Player (UnityEngine.Transform).UnityEngine.Debug:Log(Object, Object)
If you need any additional information, just let me know. Thanks for your time!