MaterialGameSettings(bpy_struct)¶
base class — bpy_struct
-
class
bpy.types.MaterialGameSettings(bpy_struct)¶ Game Engine settings for a Material data-block
-
alpha_blend¶ Blend Mode for Transparent Faces
OPAQUEOpaque, Render color of textured face as color.ADDAdd, Render face transparent and add color of face.CLIPAlpha Clip, Use the image alpha values clipped with no blending (binary alpha).ALPHAAlpha Blend, Render polygon transparent, depending on alpha channel of the texture.ALPHA_SORTAlpha Sort, Sort faces for correct alpha drawing (slow, use Alpha Clip instead when possible).ALPHA_ANTIALIASINGAlpha Anti-Aliasing, Use textures alpha as anti-aliasing mask, requires multi-sample OpenGL display.
Type: enum in [‘OPAQUE’, ‘ADD’, ‘CLIP’, ‘ALPHA’, ‘ALPHA_SORT’, ‘ALPHA_ANTIALIASING’], default ‘OPAQUE’
-
face_orientation¶ Especial face orientation options
NORMALNormal, No transformation.HALOHalo, Screen aligned billboard.BILLBOARDBillboard, Billboard with Z-axis constraint.SHADOWShadow, Faces are used for shadow.
Type: enum in [‘NORMAL’, ‘HALO’, ‘BILLBOARD’, ‘SHADOW’], default ‘NORMAL’
-
invisible¶ Make face invisible
Type: boolean, default False
-
physics¶ Use physics for this materials
Type: boolean, default False
-
use_backface_culling¶ Hide Back of the face in Game Engine
Type: boolean, default False
-
classmethod
bl_rna_get_subclass(id, default=None)¶ Parameters: id (string) – The RNA type identifier. Returns: The RNA type or default when not found. Return type: bpy.types.Structsubclass
-
classmethod
bl_rna_get_subclass_py(id, default=None)¶ Parameters: id (string) – The RNA type identifier. Returns: The class or default when not found. Return type: type
-
Inherited Properties
Inherited Functions
References