Hi, I have a proble with C# The console says: “The left-Hand side of the assignment must be a variable, a property or an indexer”
my code is:
- if( canvasResultado.SetActive=(true)){
- notificationRecord.SetActive(true);
- }
Hi, I have a proble with C# The console says: “The left-Hand side of the assignment must be a variable, a property or an indexer”
my code is:
try this:
if(canvasResultado.activeInHierarchy==true){
notificationRecord.SetActive(true);
}
thanks so much