28 lines
637 B
Ucode
28 lines
637 B
Ucode
/**
|
|
* Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
|
|
*/
|
|
class MaterialExpressionTextureSampleParameterCube extends MaterialExpressionTextureSampleParameter
|
|
native(Material)
|
|
collapsecategories
|
|
hidecategories(Object);
|
|
|
|
cpptext
|
|
{
|
|
virtual FString GetCaption() const;
|
|
virtual UBOOL TextureIsValid( UTexture* InTexture );
|
|
virtual const TCHAR* GetRequirements();
|
|
|
|
/**
|
|
* Sets the default texture if none is set
|
|
*/
|
|
virtual void SetDefaultTexture();
|
|
}
|
|
|
|
|
|
defaultproperties
|
|
{
|
|
Texture=TextureCube'EngineResources.DefaultTextureCube'
|
|
MenuCategories(0)="Texture"
|
|
MenuCategories(1)="Parameters"
|
|
}
|