Working with the amazing Dialogue System and found the ConversationPopup attribute for use in the Inspector and it's going to make working with the system so much easier for me. Dropdowns tickle a part of my brain so I love this function!
Unfortunately I don't seem to be able to select different Databases as dropdowns without it changing any other instances of this in the scene.
This may be because I'm serializing a class and creating instances of it (image attached) so it's becoming global as a class-setting rather than allowing instance specific unique settings?
---
EDIT: Just noticed as well this causes a crash on launch with the following callstack:
Code: Select all
Could not find the member 'm_PropertyDrawer' on internal Unity type 'UnityEditor.PropertyHandler'; cannot correctly set internal Unity state for drawing of custom Unity property drawers - drawers which call EditorGUI.PropertyField or EditorGUILayout.PropertyField will be drawn partially twice.
UnityEngine.Debug:LogError (object)
Sirenix.OdinInspector.Editor.UnityPropertyHandlerUtility:CouldNotFindMemberError (System.Type,string)
--=
Code: Select all
public class Interactions
{
[Header("Interaction Details")]
[Sirenix.OdinInspector.ReadOnly] public int InteractionID;
[Sirenix.OdinInspector.ReadOnly] public InteractionHandler thisHandler;
[Header("Interaction Type")]
public InteractionType interactionType;
public string InteractionName;
[ConversationPopup(true)] public List<string> Conversations = new List<string>();
public bool ActiveAction;
public bool Locked;
public enum InteractionType
{
Chat,
SpendTime,
StaffAction,
StaffActionTime,
Leave
}
}