How would one make say a quest log to display active quest? I have a list that keeps track of added quests and removed quest that is working perfectly fine, but how can i go about displaying visually whats in the list?
Use a scroll rect, create your entry log with all the text elements you need to display the info. Then make it a prefab. Then loop through your quest data and instantiate the “quest entry”, populating the quest fields as needed. Add the instantiated object to the scroll rect.
You could also look at object pooling for the quest entry objects. Really, several different ways to approach it.
But if you can do one object showing one quest entry, doing the rest should be easy.