Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_IdentityBioCharacterExtendedOverwrite.c
Go to the documentation of this file.
1[BaseContainerProps(), BaseContainerCustomDoubleCheckTitleField("m_bIsUnique", "m_sBio", "1", "UNIQUE - %1", "%1")]
3{
4 //[Attribute(desc: "Overwrite Identity, leave null to not overwrite. Should only overwrite variables that are set and ignore those that are not set")]
5 //protected ref Identity m_OverwriteIdentity;
6
7 [Attribute(desc: "Name to overwrite, leave empty to auto assign" ,uiwidget: UIWidgets.LocaleEditBox)]
9
10 [Attribute(desc: "Alias to overwrite, leave empty to auto assign" ,uiwidget: UIWidgets.LocaleEditBox)]
12
13 [Attribute(desc: "Surname to overwrite, leave empty to auto assign" ,uiwidget: UIWidgets.LocaleEditBox)]
15
16 //~ TODO: Overwrite identity does not work with Identity Class and Identity class is fully code so no access to it
17 /*
18 Get overwrite identity. Either replaces full identity or replaces names only if Visual and Sound identity are not set
19 \return Returns the Identity
20 */
21 /*Identity GetOverwriteIdentity()
22 {
23 return m_OverwriteIdentity;
24 }*/
25
26 //------------------------------------------------------------------------------------------------
27 /*
33 */
34 bool GetOverwriteNames(out string name, out string alias, out string surname)
35 {
36 if (m_sOverwriteName.IsEmpty() && m_sOverwriteAlias.IsEmpty() && m_sOverwriteSurname.IsEmpty())
37 return false;
38
39 name = m_sOverwriteName;
40 alias = m_sOverwriteAlias;
41 surname = m_sOverwriteSurname;
42
43 return true;
44 }
45}
SCR_AIAnimation_Loitering BaseContainerProps
Commanding menu commanding element class.
UI Textures DeployMenu Briefing conflict_HintBanner_1_UI desc
Attribute for setting a custom format if the given checkVar is equal to checkVarEqual....
Definition Attributes.c:612
bool GetOverwriteNames(out string name, out string alias, out string surname)
SCR_FieldOfViewSettings Attribute