If you want to help us maintaining this wiki, check out our discord server: https://discord.gg/3u69jMa 

CameraEffect

From SWRC Wiki
Revision as of 19:40, 11 April 2021 by Plasma (talk | contribs) (Created page with "<source lang="c++"> class CameraEffect extends Object abstract native noexport noteditinlinenew; var float Alpha; // Used to transition camera effects. 0 = no effect, 1...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
class CameraEffect extends Object
	abstract
	native
	noexport
	noteditinlinenew;

var float	Alpha;			// Used to transition camera effects. 0 = no effect, 1 = full effect
var bool	FinalEffect;	// Forces the renderer to ignore effects on the stack below this one.

//
//	Default properties
//


defaultproperties
{
     Alpha=1
}