[ANSWERD] Do something when it is the correct date

Hi!

I am trying to make a game and I would like to add as easter eggs that the player gets diffrent skins when it is like Halloween or christams. So for example, when it is 31 October (Hallowee), my player will get a custom texture and my music will change. How do I do something in the style with this?

Thanks

var thisDate = System.DateTime.Today;
var halloweenDate = System.DateTime(2013, 10, 31, 0, 0, 0);

if(thisDate.Date.Equals(halloweenDate)) {
	Debug.Log("Happy Halloween!");
}