You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class TestBase : MonoBehaviour
{
public bool haveInfo;
[PlayaShowIf(nameof(haveInfo))]public string infoTextureName;
public bool isInt;
[ShowIf(nameof(isInt))] public int intA;
}
public class Test : TestBase
{
[Space(20)]
public bool isString;
[ShowIf("isString")]
public string strA;
public bool haveInfo2;
[PlayaShowIf(nameof(haveInfo2))] public string infoTextureName2;
}
The text was updated successfully, but these errors were encountered:
me again 2!
Unity2022.3.16
The text was updated successfully, but these errors were encountered: