SteamVR/Environments/Scripting/API/CBaseModelEntity.GetRenderAlpha: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
(Created page with "== Function Description == ''' void SetRenderAlpha( int ) ''' ''SetRenderAlpha( int ): Sets the FX amount (0 - 255) on entity.'' ;Example <source lang="lua"> function CBa...")
 
Line 2: Line 2:




''' void SetRenderAlpha( int ) '''
''' void GetRenderAlpha( int ) '''


''SetRenderAlpha( int ): Sets the FX amount (0 - 255) on entity.''
''GetRenderAlpha( int ): Gets the FX amount (0 - 255) on entity.''




;Example
;Example
<source lang="lua">
<source lang="lua">
function CBaseModelEntity:SetRenderAlpha( int ) end
function CBaseModelEntity:GetRenderAlpha( int ) end
</source>
</source>

Revision as of 07:58, 28 May 2020

Function Description

void GetRenderAlpha( int )

GetRenderAlpha( int ): Gets the FX amount (0 - 255) on entity.


Example
function CBaseModelEntity:GetRenderAlpha( int ) end