November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I followed the guide that Peter Löfman wrote, and everything seems to compile and run fine. After some struggle with preview controller missing and location of Scripts/Editors/ files it seems like it is working. Now i can try to modify the custom propery for our needs.
We have a need to create a custom property for a project we are working on. We are creating a shared block that is going to show a graph. The editor can set title and type of (chart, donut etc.) the graph, these are ordinary string properties.
Next the editor need to create data for each part of the chart, example is that the editor is going to create three columns holidng data for a Basic Column Chart.
Each part of the column chart is holding three values and we manage this properies in a class called GraphPart
int value; string color; string description;
What we want to create is a custom property that the user easily can create as many as they like to the block graph. Something similiar as the LinkItemCollection property works.
What are the best practise and how should we implement this? All suggestions and tips/guides are welcome.
Example of code below: