terraria-cpp2il-methodrecon
v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches
GUIContent.cs
Go to the documentation of this file.
1
using
System
;
2
using
System.Runtime.InteropServices
;
3
using
UnityEngine.Bindings
;
4
using
UnityEngine.Scripting
;
5
6
namespace
UnityEngine
7
{
8
// Token: 0x02000011 RID: 17
9
[
RequiredByNativeCode
(Optional =
true
, GenerateProxy =
true
)]
10
[
NativeHeader
(
"Modules/IMGUI/GUIContent.h"
)]
11
[
Serializable
]
12
[
StructLayout
(0)]
13
public
class
GUIContent
14
{
15
// Token: 0x17000026 RID: 38
16
// (get) Token: 0x06000089 RID: 137 RVA: 0x00003298 File Offset: 0x00001498
17
// (set) Token: 0x0600008A RID: 138 RVA: 0x000032AC File Offset: 0x000014AC
18
public
string
text
19
{
20
get
21
{
22
return
this.
m_Text
;
23
}
24
set
25
{
26
this.m_Text
=
value
;
27
}
28
}
29
30
// Token: 0x17000027 RID: 39
31
// (set) Token: 0x0600008B RID: 139 RVA: 0x000032C0 File Offset: 0x000014C0
32
public
Texture
image
33
{
34
set
35
{
36
this.m_Image
=
value
;
37
}
38
}
39
40
// Token: 0x17000028 RID: 40
41
// (get) Token: 0x0600008C RID: 140 RVA: 0x000032D4 File Offset: 0x000014D4
42
// (set) Token: 0x0600008D RID: 141 RVA: 0x000032E8 File Offset: 0x000014E8
43
public
string
tooltip
44
{
45
get
46
{
47
return
this.
m_Tooltip
;
48
}
49
set
50
{
51
this.m_Tooltip
=
value
;
52
}
53
}
54
55
// Token: 0x0600008E RID: 142 RVA: 0x000032FC File Offset: 0x000014FC
56
public
GUIContent
()
57
{
58
}
59
60
// Token: 0x0600008F RID: 143 RVA: 0x00003310 File Offset: 0x00001510
61
public
GUIContent
(
string
text
)
62
{
63
}
64
65
// Token: 0x06000090 RID: 144 RVA: 0x00003320 File Offset: 0x00001520
66
public
GUIContent
(
string
text
,
Texture
image
,
string
tooltip
)
67
{
68
this.m_Text
=
text
;
69
this.m_Image
=
image
;
70
this.m_Tooltip
=
tooltip
;
71
}
72
73
// Token: 0x06000091 RID: 145 RVA: 0x00003348 File Offset: 0x00001548
74
public
GUIContent
(
GUIContent
src
)
75
{
76
string
text
=
src
.m_Text;
77
this.m_Text
=
text
;
78
string
tooltip
=
src
.m_Tooltip;
79
this.m_Tooltip
=
tooltip
;
80
}
81
82
// Token: 0x06000092 RID: 146 RVA: 0x00003378 File Offset: 0x00001578
83
internal
static
GUIContent
Temp
(
string
t)
84
{
85
if
(!
true
)
86
{
87
}
88
return
1;
89
}
90
91
// Token: 0x06000093 RID: 147 RVA: 0x0000338C File Offset: 0x0000158C
92
internal
static
void
ClearStaticCache
()
93
{
94
if
(!
true
)
95
{
96
}
97
}
98
99
// Token: 0x06000094 RID: 148 RVA: 0x0000339C File Offset: 0x0000159C
100
public
override
string
ToString
()
101
{
102
string
tooltip
;
103
if
(this.
m_Text
==
null
)
104
{
105
tooltip = this.
m_Tooltip
;
106
if
(tooltip ==
null
)
107
{
108
return
tooltip
.ToString();
109
}
110
}
111
return
tooltip
;
112
}
113
114
// Token: 0x06000095 RID: 149 RVA: 0x000033C4 File Offset: 0x000015C4
115
// Note: this type is marked as 'beforefieldinit'.
116
static
GUIContent
()
117
{
118
}
119
120
// Token: 0x04000069 RID: 105
121
[
SerializeField
]
122
private
string
m_Text
;
123
124
// Token: 0x0400006A RID: 106
125
[
SerializeField
]
126
private
Texture
m_Image
;
127
128
// Token: 0x0400006B RID: 107
129
[
SerializeField
]
130
private
string
m_Tooltip
;
131
132
// Token: 0x0400006C RID: 108
133
private
static
readonly
GUIContent
s_Text
;
134
135
// Token: 0x0400006D RID: 109
136
private
static
readonly
GUIContent
s_Image
;
137
138
// Token: 0x0400006E RID: 110
139
private
static
readonly
GUIContent
s_TextImage
;
140
141
// Token: 0x0400006F RID: 111
142
public
static
GUIContent
none
;
143
}
144
}
j__TPar
class f__AnonymousType0<< Count > j__TPar
Definition
--f__AnonymousType0.cs:8
UnityEngine.GUIContent.GUIContent
static GUIContent()
Definition
GUIContent.cs:116
UnityEngine.GUIContent.m_Tooltip
string m_Tooltip
Definition
GUIContent.cs:130
UnityEngine.GUIContent.GUIContent
GUIContent(string text)
Definition
GUIContent.cs:61
UnityEngine.GUIContent.tooltip
string tooltip
Definition
GUIContent.cs:44
UnityEngine.GUIContent.m_Text
string m_Text
Definition
GUIContent.cs:122
UnityEngine.GUIContent.s_Text
static readonly GUIContent s_Text
Definition
GUIContent.cs:133
UnityEngine.GUIContent.text
string text
Definition
GUIContent.cs:19
UnityEngine.GUIContent.s_TextImage
static readonly GUIContent s_TextImage
Definition
GUIContent.cs:139
UnityEngine.GUIContent.GUIContent
GUIContent(GUIContent src)
Definition
GUIContent.cs:74
UnityEngine.GUIContent.s_Image
static readonly GUIContent s_Image
Definition
GUIContent.cs:136
UnityEngine.GUIContent.Temp
static GUIContent Temp(string t)
Definition
GUIContent.cs:83
UnityEngine.GUIContent.none
static GUIContent none
Definition
GUIContent.cs:142
UnityEngine.GUIContent.image
Texture image
Definition
GUIContent.cs:33
UnityEngine.GUIContent.GUIContent
GUIContent(string text, Texture image, string tooltip)
Definition
GUIContent.cs:66
UnityEngine.GUIContent.GUIContent
GUIContent()
Definition
GUIContent.cs:56
UnityEngine.GUIContent.m_Image
Texture m_Image
Definition
GUIContent.cs:126
UnityEngine.GUIContent.ToString
override string ToString()
Definition
GUIContent.cs:100
UnityEngine.GUIContent.ClearStaticCache
static void ClearStaticCache()
Definition
GUIContent.cs:92
UnityEngine.GUIContent
Definition
GUIContent.cs:14
UnityEngine.SerializeField
Definition
SerializeField.cs:9
UnityEngine.Texture
Definition
Texture.cs:15
System.Reflection.TypeAttributes.Serializable
@ Serializable
System.Runtime.InteropServices
Definition
_Activator.cs:4
System.ExceptionArgument.value
@ value
System
Definition
__ComObject.cs:4
UnityEngine.Bindings
Definition
CodegenOptions.cs:4
UnityEngine.Scripting
Definition
MovedFromAttribute.cs:4
UnityEngine
Definition
_AndroidJNIHelper.cs:6
source
UnityEngine.IMGUIModule
UnityEngine
GUIContent.cs
Generated by
1.10.0