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 |
//============================================================================= // $Author: Aleiby $ // $Date: 5/02/02 3:27p $ // $Revision: 3 $ //============================================================================= //------------------------------------------------------------------------------ // Name: PointParticleTemplate.uc // Author: Aaron R Leiby // Date: 10 March 2000 //------------------------------------------------------------------------------ // Description: //------------------------------------------------------------------------------ // How to use this class: //------------------------------------------------------------------------------ class PointParticleTemplate extends ParticleTemplate native; ///////////////////////// // Initialization data // ///////////////////////// var() public EDrawStyle Style; var() public color Color; var() public Range InitialAlpha; var() public bool bFadeAlphaOnly; var() public Material Texture; var() public float Size; var() public bool Scale; var() public float ScaleA; var() public float ScaleB; var() public float ScaleC; defaultproperties { Color=(B=255,G=255,R=255,A=255) InitialAlpha=(A=1.000000,B=1.000000) Size=1.000000 ScaleA=1.000000 ScaleB=1.000000 ScaleC=1.000000 ParticleType="PointParticle" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |