I have essentially the following:
class MyClass extends Object {
function MyClass () {
hideFlags = HideFlags.HideInHierarchy;
}
}
And after compiling, I’m getting an “Unknown identifier: ‘hideFlags’” error. Am I not understanding inheritance properly? Object has the variable hideFlags, so shouldn’t any class that extends from it?