Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

KFStoryGame.KF_HUDStyleManager


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
/*
	--------------------------------------------------------------
	KF_HUDStyleManager
	--------------------------------------------------------------

    Placeable actor able to store multiple skin presets for the
    players HUD.

	Author :  Alex Quick

	--------------------------------------------------------------
*/


class KF_HUDStyleManager extends  Info
dependson(KFStoryGameInfo)
placeable;



struct SConditionStyle
{
    var() KFStoryGameInfo.SConditionHintInfoWorld             Style_ObjCondition_World;
    var() KFStoryGameInfo.SConditionHintInfoHUD               Style_ObjCondition_Screen;
    var() Color                                               Condition_Clr;
};

struct SObjectiveStyle
{
    var() KFStoryGameInfo.SObjectiveHeaderInfo                Header;
    var() KFStoryGameInfo.SObjectiveBackgroundInfo            Background;
    var() KFStoryGameInfo.SVect2D                             Position;
    var() SConditionStyle                                     Conditions;
    var() bool                                                bOverride;
};


struct SMainHUDStyle
{
    var() Material     Ammo_Background;
    var() bool                                                bOverride;
};

struct SDialogueStyle
{
    var() KFStoryGameInfo.SDialogueDisplayInfo                Dialogue_Box;
    var() bool                                                bOverride;
};

struct SStylePreset
{
    var() name                                                StyleName;
    var() SDialogueStyle                                      Dialogue;
    var() SObjectiveStyle                                     Objectives;
    var() SMainHUDStyle                                       MainHUD;
};


var()      SStylePreset                                       StylePreset;

defaultproperties
{
     bNoDelete=True
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Fri 13-10-2023 03:17:28.000 - Creation time: Fri 13-10-2023 03:19:04.533 - Created with UnCodeX