79185623

Date: 2024-11-13 15:42:17
Score: 1
Natty:
Report link

In my case I could create an abstract parent and 2 new classes inheriting it and a new serialized value in the one I want to show in Inspector:

abstract class A{
   protected float myFloat;
}

class B : A{
 private new float myFloat = -1f;
}

class C : A{
   [SerializeField]
   private new float myFloat;
}
Reasons:
  • RegEx Blacklisted phrase (1): I want
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Guilherme Muniz