![]() |
ORK Framework
2.22.0
API Documentation
|
Public Member Functions | |
BattleTextsSettings (ORKProjectAsset project) | |
override void | SetData (DataObject data) |
Sets the variables of the class using a ORKFramework.DataObject. More... | |
override void | SetRealIDs () |
Sets the RealID values (indexes). More... | |
override string | GetName (int index) |
Gets the name of a data. More... | |
override string[] | GetNames (bool addIndex) |
Gets a list of names of all data. More... | |
override int | Add () |
Adds new data. More... | |
override int | Copy (int index) |
Creates a copy of the data with the specified index. More... | |
override void | Remove (int index) |
Removes the data with the specified index. More... | |
override void | Move (int index, bool down) |
Moves the data with the specified index. More... | |
ChoiceContent | GetAllCombatantsContent (TargetType type, ContentLayout layout) |
void | ShowMissFlyingText (string info, Combatant combatant) |
void | ShowBlockFlyingText (string info, Combatant combatant) |
void | ShowBlockFlyingText (string info, Combatant combatant, GameObject gameObject) |
void | ShowCastCancelFlyingText (string info, Combatant combatant) |
void | ShowLevelUpFlyingText (string info, Combatant combatant) |
void | ShowClassLevelUpFlyingText (string info, Combatant combatant) |
![]() | |
override void | DataAdded (ORKDataType type, int index) |
Automatic data updated function when adding new data. More... | |
override void | DataRemoved (ORKDataType type, int index, int index2) |
Automatic data update function when removing data. More... | |
override void | DataMoved (ORKDataType type, bool down, int index, int index2) |
Automatic data update function when moving data. More... | |
override void | DataLoaded () |
Called after loading the project data of all settings. Handles final data checks. More... | |
![]() | |
virtual void | LoadProject (ORKProjectAsset project) |
Loads the settings found in the ORK Project asset. More... | |
virtual void | GetSaveData (ref Dictionary< string, ORKDataFile > list, bool encrypt) |
Gets the save data. More... | |
virtual void | GetLoadData (ref Dictionary< string, ORKDataFile > list, ORKProjectAsset project) |
Gets the load data from the ORK Project asset. More... | |
virtual void | GetGameVariables (ref List< string > list) |
Gets the game variables found in this settings. More... | |
virtual DataObject | GetData () |
Gets a ORKFramework.DataObject representing the class. More... | |
virtual void | EditorAutoSetup (string fieldName) |
Called for all fields using the autoSetup option of the ORKFramework.ORKEditorLayoutAttribute. More... | |
void | SetRealIDs (BaseIndexData[] d) |
Sets the RealID values (indexes) of the data. More... | |
Public Attributes | |
GUISkin | textSkin |
LanguageInfoButton | allAlliesButton = new LanguageInfoButton("All Allies") |
LanguageInfoButton | allEnemiesButton = new LanguageInfoButton("All Enemies") |
LanguageInfoButton | allCombatantsButton = new LanguageInfoButton("All Combatants") |
LanguageInfo[] | escapeCommandText |
LanguageInfo[] | defendCommandText |
LanguageInfo[] | noneCommandText |
LanguageInfo[] | gridMoveCommandText |
LanguageInfo[] | gridOrientationCommandText |
LanguageInfo[] | gridExamineCommandText |
bool | showInfo = true |
bool | queueInfos = false |
int | infoBoxID = 0 |
float | infoTime = 3 |
bool | infoAtCom = false |
bool | infoComUpdate = true |
string | infoChildName = "" |
Vector2 | infoPosOff = Vector2.zero |
bool | infoInField = false |
bool | infoInTurnBased = true |
bool | infoInActiveTime = true |
bool | infoInRealTime = true |
bool | infoPhase = true |
BattleInfo | attackInfo = new BattleInfo("%u attacks") |
BattleInfo | abilityInfo = new BattleInfo("%u uses %") |
BattleInfo | itemInfo = new BattleInfo("%u uses %") |
BattleInfo | defendInfo = new BattleInfo("%u defends") |
BattleInfo | escapeInfo = new BattleInfo("%u tries to escape") |
BattleInfo | counterInfo = new BattleInfo("%u counters") |
BattleInfo | deathInfo = new BattleInfo("%u dies") |
BattleInfo | noneInfo = new BattleInfo("%u does nothing") |
BattleInfo | changeMemberInfo = new BattleInfo("%u is exchanged for %") |
BattleInfo | joinBattleInfo = new BattleInfo("%u joins the battle") |
BattleInfo | gridMoveInfo = new BattleInfo("%u moves") |
BattleInfo | stealItemInfo = new BattleInfo("%u steals %") |
BattleInfo | stealItemFailInfo = new BattleInfo("%u fails to steal") |
BattleInfo | stealMoneyInfo = new BattleInfo("%u steals % money") |
BattleInfo | stealMoneyFailInfo = new BattleInfo("%u fails to steal money") |
FlyingTextPositionSettings | flyingTextPositionSettings = new FlyingTextPositionSettings() |
bool | effectRemoveTextEndBattle = true |
bool | effectRemoveTextEndDeath = true |
FlyingTextGroup< StatusEffectFlyingTextSettings >[] | statusEffectFlyingText = new FlyingTextGroup<StatusEffectFlyingTextSettings>[0] |
FlyingTextGroup< FlyingTextSettings >[] | missFlyingText = new FlyingTextGroup<FlyingTextSettings>[0] |
FlyingTextGroup< FlyingTextSettings >[] | blockFlyingText = new FlyingTextGroup<FlyingTextSettings>[0] |
FlyingTextGroup< FlyingTextSettings >[] | castCancelFlyingText = new FlyingTextGroup<FlyingTextSettings>[0] |
FlyingTextGroup< FlyingTextSettings >[] | levelUpFlyingText = new FlyingTextGroup<FlyingTextSettings>[0] |
FlyingTextGroup< FlyingTextSettings >[] | classLevelUpFlyingText = new FlyingTextGroup<FlyingTextSettings>[0] |
Properties | |
override string | FILENAME [get] |
override int | Count [get] |
GUISkin | GUISkin [get] |
![]() | |
abstract string | FILENAME [get] |
Gets the filename used for saving the settings. More... | |
abstract int | Count [get] |
|
virtual |
Adds new data.
Implements ORKFramework.CoreSettings.
|
virtual |
Creates a copy of the data with the specified index.
index | The data index. |
Implements ORKFramework.CoreSettings.
|
virtual |
Gets the name of a data.
index | The data index. |
Implements ORKFramework.CoreSettings.
|
virtual |
Gets a list of names of all data.
addIndex | If true, the index of the data will be added to the names. |
Implements ORKFramework.CoreSettings.
|
virtual |
Moves the data with the specified index.
index | The data index. |
down | If true, the data will be moved down. |
Implements ORKFramework.CoreSettings.
|
virtual |
Removes the data with the specified index.
index | The data index. |
Implements ORKFramework.CoreSettings.
|
virtual |
Sets the variables of the class using a ORKFramework.DataObject.
data | ORKFramework.DataObject containing the data. |
Reimplemented from ORKFramework.CoreSettings.
|
virtual |
Sets the RealID values (indexes).
Implements ORKFramework.CoreSettings.
LanguageInfo [] ORKFramework.BattleTextsSettings.defendCommandText |
LanguageInfo [] ORKFramework.BattleTextsSettings.escapeCommandText |
LanguageInfo [] ORKFramework.BattleTextsSettings.gridExamineCommandText |
LanguageInfo [] ORKFramework.BattleTextsSettings.gridMoveCommandText |
LanguageInfo [] ORKFramework.BattleTextsSettings.gridOrientationCommandText |
LanguageInfo [] ORKFramework.BattleTextsSettings.noneCommandText |