- Home /
Showing scriptable object and bool within that object in inspector.
I'm working on my NPC class, and I would like to assign a list of my "Quest" scriptable object to my NPC. Inside of this quest scriptable object I have a bool, "isAvailable" so that (hopefully) my NPC can offer only available quests to the player.
I'd like to have a list of all quests an NPC has and a checkbox next to each to toggle isAvailable within the inspector. Showing the quests isn't an issue, neither are the bools, but because the bool is INSIDE of the quest object I'm at a loss. I really hope I don't need to make a customer editor window for this, never done that before and seems like a pain. Thanks
Your answer
Follow this Question
Related Questions
Scriptable Object only useable from code, not via inspector 1 Answer
Is there a way to drag a Subclass onto a Field of the Super Type? 1 Answer
Using ScriptableObjects to build ECS archetypes 0 Answers
How do I save scripts as variables in the inspector? 0 Answers
ScriptableObject instances stopped updating in Inspector? 0 Answers