Novelty scripting reference > Scripted object events > OnShow

OnShow

This event is called during an object's appearance.

Hint: By setting the time property of a Change visibility action (Show), this event will be called for that amount of time when that action is triggered.

Parameters

Parameter Description Type
self Handle to the associated object Object@
value Progress of appearance [0..1] float


Example

event FadeIn.OnShow
{
	// Fade in object 
	self.SetOpacity(value);
}

Back to top