OROCHI
 
Loading...
Searching...
No Matches
GxUnitHudImageRenderView.h
Go to the documentation of this file.
1//===========================================================================
9//===========================================================================
10#pragma once
11
12GX_HUD_NAMESPACE_BEGIN()
13
14//===========================================================================
16//===========================================================================
18{
19 //-------------------------------------------------------------
21 //-------------------------------------------------------------
23public:
24 // RTTI定義
25 GX_RTTI_CLASS_NAME(GxUnitHudImageRenderView, GxUnitHudImageRender, "HUDビューポート画像")
26 // ClassBaseReference継承クラス用禁止宣言
28
29
30 //-------------------------------------------------------------
32 //-------------------------------------------------------------
34public:
37
39 //-------------------------------------------------------------
41 //-------------------------------------------------------------
43protected:
45 void asyncUpdate( void ) override;
46
48 //-------------------------------------------------------------
50 //-------------------------------------------------------------
52public:
54 constexpr RENDER_VIEW getViewIndex(void) const { return _viewIndex; }
56 constexpr void setViewIndex(RENDER_VIEW view) { _viewIndex = view; }
57
59 //-------------------------------------------------------------
61 //-------------------------------------------------------------
63private:
64 RENDER_VIEW _viewIndex;
65
67};
68
69GX_CORE_NAMESPACE_END()
#define GX_PROHIBIT_CLASS_BASE_REFERENCE(__CLASS__)
GxClassBaseReference継承の禁止宣言(new以外の生成禁止 + コピー禁止)
Definition GxBase.h:244
RENDER_VIEW
描画優先度(ビュー)
Definition GxRender.h:442
HUD描画画像ユニット
Definition GxUnitHudImageRender.h:18
HUDビューポート画像ユニット
Definition GxUnitHudImageRenderView.h:18
constexpr void setViewIndex(RENDER_VIEW view)
ビューインデックスの設定
Definition GxUnitHudImageRenderView.h:56
constexpr RENDER_VIEW getViewIndex(void) const
ビューインデックスの取得
Definition GxUnitHudImageRenderView.h:54