I just wanted to see if there was a way to show the value of a variable as non-editable in the properties panel?
I have my script as construction script and didn’t really want to start messing with widgets unless totally necessary.
The BlueprintReadOnly tag allows the variable to be accessed only as a blueprint getter.
And finally if the variable is always updating its value in the constructor based off of other variables values and you wanted the correct value to always show up in the editor for “MyFloatVariable” you would need to put that calculation inside the function PostInitProperties().
Your welcome. I understand, its intimidating at first, but its really not that bad when you get used to it.
A really good course that got me comfortable with it is Tom Loomans c++ course, if your interested, he worked at epic for awhile, he really knows his stuff. https://www.tomlooman.com/
I know its not the ideal solution but its currently the only one, so I ask if you could please mark the answer as correct so that others with a similar question could find this answer more easily? Thank you