Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 00060 00061 00062 00063 00064 00065 00066 00067 00068 00069 00070 00071 00072 00073 00074 00075 00076 00077 00078 00079 00080 |
/** * Copyright 1998-2008 Epic Games, Inc. All Rights Reserved. */ class Texture2DComposite extends Texture native hidecategories(Object); /** * Defines a source texture and UV region in that texture */ struct native SourceTexture2DRegion { var int OffsetX; var int OffsetY; var int SizeX; var int SizeY; var Texture2D Texture2D; }; /** list of source textures and UV regions for compositing */ var array<SourceTexture2DRegion> SourceRegions; /** * Optional max texture size clamp for the composite texture. A value of 0 is ignored and * defaults to deriving the texture size using texture LOD bias settings from the source textures */ var int MaxTextureSize; /** Utility that checks to see if all Texture2Ds specified in the SourceRegions array are fully streamed in. */ native final function bool SourceTexturesFullyStreamedIn(); /** * Regenerates this composite texture using the list of source texture regions. * The existing mips are reallocated and the RHI resource for the texture is updated * * @param NumMipsToGenerate - number of mips to generate. if 0 then all mips are created */ native final function UpdateCompositeTexture(int NumMipsToGenerate); /** Utils to reset all source region info. */ native final function ResetSourceRegions(); // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) defaultproperties { NeverStream=True Name="Default__Texture2DComposite" ObjectArchetype=Texture'Engine.Default__Texture' } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |