Skip to main content
Unity3D

Introduction to C# in Unity #12: 🥑 else block

By February 17, 2021No Comments
If Else Conditional
https://www.youtube.com/watch?v=FhQjVwTPNTo&feature=youtu.be

🥑 Use else to specify a block of code to be executed, if the same condition is false

else
{
  //code block to execute if the condition is false
}

Leave a Reply