I was quite surprised when I saw Rick writing an actual getter in C#. From my little experience in C# this is quite unusual as most developers use public string StoryText { get; set; }
.This is called Property and it is a C# feature for more than a decade .
I was even more surprised to see that properties do not work in C# ( I was expecting to see _storyText on the Inspector) which explains why Rick wrote a getter. But why is not working? Could someone explain please?