Game Master: Editable Entities Configuration – Arma Reforger

From Bohemia Interactive Community
Jump to navigation Jump to search
(Added note about preview image)
m (Fix links)
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{TOC|side}}
{{TOC|side}}
Step-by-step guide to how to create a prefab variant recognized by in-game editor; either manually, or using automated process.
Step-by-step guide to how to create an editable prefab variant recognised by {{Link|Arma Reforger:Game Master|Game Master}}; either manually, or using automated process.


To make an entity editable in in-game editor, several components have to be added to it and the entity needs to be replicated. Because this affects performance, we don't want to add such functionality on all prefabs - having every tree or rock configure this way would be a big it.
To make an entity editable in Game Master, several components have to be added to it and the entity needs to be replicated.
Because this affects performance, we don't want to add such functionality on all prefabs - having every tree or rock configured this way would be a big hit.


Instead, we'll '''create inherited prefab of each entity''' which we want editable. Doing this manually would be too time-consuming, so there are automated Workbench plugins which can take care of that.
Instead, we will '''create inherited prefab of each entity''' which we want editable.
Doing this manually would be too time-consuming, so there are automated Workbench plugins which can take care of that.


= Creating Placeable Prefabs =


== Existing Prefab ==
== Create Placeable Prefabs ==
Prefabs which exist even without their use in the editor, e.g., soldiers, vehicles, props, houses, etc, can be parsed using '''Create/Update Selected Editable Prefabs''' plugin. Behavior of this plugin is controlled by [enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf EditablePrefabsConfig.conf] config, which can be modified in plugin's settings ( '''''Plugins > Settings > Create/Update Selected Editable Prefabs''''' ).


=== Existing Prefab ===


=== Preparation ===
Prefabs which exist even without their use in the editor, e.g., soldiers, vehicles, props, houses, etc, can be parsed using '''Create/Update Selected Editable Prefabs''' plugin.
Behaviour of this plugin is controlled by {{Link|enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf}} config, which can be modified in plugin's settings ('''''Plugins > Settings > Create/Update Selected Editable Prefabs''''').


==== Preparation ====
[[File:armareforger-editorPreviewTemplate.png|100px|thumb|left]]
[[File:armareforger-editorPreviewTemplate.png|100px|thumb|left]]
Before using this plugin, it is necessary to modify one property in {{Link|enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf}} - '''Image Placeholder'''.
To do so, use [[Arma_Reforger:Data_Modding_Basics#Using_.22Override_in....22_function|'''Override in addon''']] functionality on that file and then open it in '''Resource Manager'''.
By default, this config is using a texture which is in packed state and plugin requires that '''source file (png picture) exist'''.
Since packed data is missing source files, this property have to point to some registered resource which is using PNG as source.


Before using this plugin, it is necessary to modify one property in [enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf EditablePrefabsConfig.conf] - '''Image Placeholder'''. By default, this config is using a texture which is in packed state and plugin requires that '''source file (png picture) exist.''' Since packed data is missing source files, this property have to point to some registered resource which is using PNG as source.
{{Feature|important|If '''Image Placeholder''' is not configured properly then placeholder images will be simply not created, and {{Link|Arma Reforger:Game Master: Image Generation Tutorial|Preview Image generation}} will not be working as intended!}}


{{Feature|warning|If '''Image Placeholder''' is not configured properly then placeholder images will be simply not created, and [[Arma_Reforger:Game_Master:_Image_Generation_Tutorial|Preview Image generation]] will be not working as intended!}}
Alternatively, it is also possible to use '''editorPreviewTemplate.png''' from this page and place it in '''UI/Textures/EditorPreviews/System''' folder inside the addon you are working on and register it.
After that, plugin should be able to use that texture and generate placeholder preview images for you.


Alternatively, it is also possible to use '''editorPreviewTemplate.png''' from this page and place it in '''UI/Textures/EditorPreviews/System''' folder inside the addon you are working on and register it. After that, plugin should be able to use that texture and generate placeholder preview images for you.
{{Clear}}
{{Clear}}
==== Select ====
In Resource Browser, '''select prefab files''' (*.et) of entities you want to process. Default {{Link|enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf}} ignores prefabs with {{hl|_base}}, {{hl|_Base}}, {{hl|_dst}}, {{hl|_Dst}} or {{hl|_DST}} suffixes.


=== Select ===
Check editable entity types to see which prefabs should be marked as editable.
In Resource Browser, '''select prefab files''' (*.et) of entities you want to process. Default [enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf EditablePrefabsConfig.conf] ignores prefabs with _base,_Base,_dst,_Dst or _DST suffixes.


Check editable entity types to see which prefabs should be marked as editable.
{{Feature|informative|Both Resource Manager and World Editor browsers are supported, but not Resource Manager 2.}}
 
{{Feature|informative|''Tip: Both Resource Manager and World Editor browsers are supported, but not Resource Manager 2.''}}
 
=== Create ===


==== Create ====
[[File:armareforger-gm-registering-plugin.jpg|right|thumb|800px|Usage of In-game Editor plugins]]
[[File:armareforger-gm-registering-plugin.jpg|right|thumb|800px|Usage of In-game Editor plugins]]
With files selected, activate '''''Plugins > In-game Editor > Create/Update Selected Editable Prefabs'''''
With files selected, activate '''''Plugins > In-game Editor > Create/Update Selected Editable Prefabs'''''


{{Feature|informative|''Tip: You can also press '''Ctrl+Shift+U''' to perform this action.''}}
{{Feature|informative|You can also press {{Controls|Ctrl|Shift|U}} to perform this action.}}


After the operation is done, please check the log, it will list all processed prefabs. They can end up with one of the following states:
After the operation is done, please check the log, it will list all processed prefabs. They can end up with one of the following states:
Line 45: Line 49:


If prefab creation succeeded, following things will happen:
If prefab creation succeeded, following things will happen:
* New files, with '''E_''' '''prefix''', will be made in '''PrefabsEditable/Auto''' (except vehicles and characters - this is controlled by [enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf EditablePrefabsConfig.conf]) as well as '''UI/Textures/EditorPreviews/Auto''' folders.  
* New files, with '''E_''' '''prefix''', will be made in '''PrefabsEditable/Auto''' (except vehicles and characters - this is controlled by {{Link|enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf}}) as well as '''UI/Textures/EditorPreviews/Auto''' folders.
* Display name, which is visible in for instance in-game editor Asset Browser, will be adjusted according to rules stored in [enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf EditablePrefabsConfig.conf]. By default '''Name''' property will use following scheme ''#AR-EditableEntity_%1_Name'' where %1 is prefab filename. Such localized string can be later added to [[Arma_Reforger:Mod_Localisation|String Tables]]
* Display name, which is visible in for instance in-game editor Asset Browser, will be adjusted according to rules stored in {{Link|enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf}}. By default '''Name''' property will use following scheme ''#AR-EditableEntity_%1_Name'' where %1 is prefab filename. Such localized string can be later added to {{Link|Arma Reforger:Mod Localisation|String Tables}}
{{Feature|informative|''Tip: Consider changing default string prefix for your assets from '''AR''' to your [[OFPEC_tags|personal tag]] to avoid string clashes.''}}
{{Feature|informative|Consider changing default string prefix for your assets from '''AR''' to your {{Link|OFPEC tags|personal tag}} to avoid string clashes.}}
* Editable prefabs will get proper '''Editable Component,''' appropriate to to its type - (either '''SCR_EditableEntityComponent''' , '''SCR_EditableCharacterComponent''', '''SCR_EditableVehicleComponent''' or '''SCR_EditableGroupComponent''' )  
* Editable prefabs will get proper '''Editable Component''', appropriate to to its type - (either '''{{Link/Enfusion|armaR|SCR_EditableEntityComponent}}''', '''{{Link/Enfusion|armaR|SCR_EditableCharacterComponent}}''', '''{{Link/Enfusion|armaR|SCR_EditableVehicleComponent}}''' or '''{{Link/Enfusion|armaR|SCR_EditableGroupComponent}}''')
* Some of the '''labels''' will be automatically assigned to prefab depending on their type. Rules for assigning labels are defined in [enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf EditablePrefabsConfig.conf]
* Some of the '''labels''' will be automatically assigned to prefab depending on their type. Rules for assigning labels are defined in {{Link|enfusion://ResourceManager/~ArmaReforger:Configs/Workbench/EditablePrefabs/EditablePrefabsConfig.conf}}


Once editable variants are generated, it possible to generate proper Preview Images by following instructions from [[Arma_Reforger:Game_Master:_Image_Generation_Tutorial]] page.  
Once editable variants are generated, it possible to generate proper Preview Images by following instructions from [[Arma_Reforger:Game_Master:_Image_Generation_Tutorial]] page.


=== Maintain ===
==== Maintain ====
Editable prefabs needs to be regenerated every time the source prefab changes. This can be achieved by several ways:
Editable prefabs needs to be regenerated every time the source prefab changes. This can be achieved by several ways:


Line 62: Line 66:


{{Clear}}
{{Clear}}
=== Custom Prefab ===


== Custom Prefab ==
Prefabs created specifically for the editor, e.g., slots, comments, etc.
Prefabs created specifically for the editor, e.g., slots, comments, etc.


=== Configure ===
==== Configure ====
When setting-up the entity in World Editor, add following component prefabs to make it editable:
When setting-up the entity in World Editor, add following component prefabs to make it editable:


* [enfusion://ResourceManager/~ArmaReforger:Prefabs/Editor/Components/Default_RplComponent.ct|Prefabs/Editor/Components/'''Default_RplComponent.ct''']
* {{Link|enfusion://ResourceManager/~ArmaReforger:Prefabs/Editor/Components/Default_RplComponent.ct}}
* [enfusion://ResourceManager/~ArmaReforger:Prefabs/Editor/Components/Default_SCR_EditableEntityComponent.ct|Prefabs/Editor/Components/'''Default_SCR_EditableEntityComponent.ct''']
* {{Link|enfusion://ResourceManager/~ArmaReforger:Prefabs/Editor/Components/Default_SCR_EditableEntityComponent.ct}}


{{Feature|informative|''Tip: You can also add the components a new, without relying on prefabs. Do so only if you understand what they do and how to configure them.''}}
{{Feature|informative|You can also add the components a new, without relying on prefabs. Do so only if you understand what they do and how to configure them.}}


{{Feature|informative|In this article, '''Enfusion links''' are used. With those links it is possible to open specific resource just by simply clicking on that link. Enfusion links '''has to be manually activated in Workbench options''' (Workbench -> Options -> Workbench -> Register "enfusion://" protocol) before it can be used]}}
{{Feature|informative|
In this article, '''Enfusion links''' are used. With those links it is possible to open specific resource just by simply clicking on that link.
Enfusion links '''has to be manually activated in Workbench options''' (Workbench -> Options -> Workbench -> Register "enfusion://" protocol) before it can be used.
}}


=== Choose Directory ===
==== Choose Directory ====
Before turning the entity into prefab, select a directory where to create it.
Before turning the entity into prefab, select a directory where to create it.


Line 83: Line 90:
Inside, pick a folder which suits the entity the best. Do not create anything in '''Auto''' folder manually, it would get removed during the next auto-generation process!
Inside, pick a folder which suits the entity the best. Do not create anything in '''Auto''' folder manually, it would get removed during the next auto-generation process!


=== Create Prefab ===
==== Create Prefab ====
Create a new prefab by dragging the entity from World Editor into desired directory.
Create a new prefab by dragging the entity from World Editor into desired directory.


Line 90: Line 97:
The prefix helps to distinguish editable prefabs from non-editable ones.
The prefix helps to distinguish editable prefabs from non-editable ones.


= Registering Placeable Prefabs =
 
== Register Placeable Prefabs ==
 
Editable entities must be registered in order to appear in content browser.
Editable entities must be registered in order to appear in content browser.


=== Create Registry Config ===
=== Create Registry Config ===
In '''Configs/Editor/PlaceableEntities''', create a config of type '''SCR_PlaceableEntitiesRegistry'''.
 
In '''Configs/Editor/PlaceableEntities''', create a config of type '''{{Link/Enfusion|armaR|SCR_PlaceableEntitiesRegistry}}'''.


Set '''Source Directory''' to folder where editable entity prefabs are placed. To make versioning easier, use more specialized registries (e.g., Vehicles, Props, etc.) rather than a few ones.
Set '''Source Directory''' to folder where editable entity prefabs are placed. To make versioning easier, use more specialized registries (e.g., Vehicles, Props, etc.) rather than a few ones.


=== Add the Registry to Edit Mode ===
==== Add the Registry to Edit Mode ====
Open [enfusion://ResourceManager/~ArmaReforger:Prefabs/Editor/Modes/EditorModeEdit.et|'''Prefabs/Editor/Edit/EditorModeEdit.et'''] in prefab editing mode (e.g, ''RMB > Edit Prefab''), select '''SCR_PlacingEditorComponent''' and drag the registry config to '''Registries''' array.
Open {{Link|enfusion://ResourceManager/~ArmaReforger:Prefabs/Editor/Modes/EditorModeEdit.et}} in Prefab editing mode (e.g, ''RMB > Edit Prefab''), select '''SCR_PlacingEditorComponent''' and drag the registry config to '''Registries''' array.


{{Feature|important|Before editing EditorModeEdit.et, it might be necessary to create override in your addon! See [[Arma_Reforger:Asset_Browser_Mod_Integration#Using_Override_in_functionality]] page for more details. }}  
{{Feature|important|Before editing EditorModeEdit.et, it might be necessary to create override in your addon! See [[Arma_Reforger:Asset_Browser_Mod_Integration#Using_Override_in_functionality]] page for more details.}}


=== Register Entities ===
==== Register Entities ====
In Resource Manager, activate '''''Plugins > In-game Editor > Register Placeable Entities...'''''
In Resource Manager, activate '''''Plugins > In-game Editor > Register Placeable Entities...'''''


Line 111: Line 121:




{{Feature|informative|''Tip: All editable entities which use component prefab [[enfusion://ResourceManager/~ArmaReforger:Prefabs/Editor/Components/Default_SCR_EditableEntityComponent.ct|'''Default_SCR_EditableEntityComponent.ct''']] are already flagged as PLACEABLE.''}}
{{Feature|informative|All editable entities which use component prefab {{Link|enfusion://ResourceManager/~ArmaReforger:Prefabs/Editor/Components/Default_SCR_EditableEntityComponent.ct}} are already flagged as PLACEABLE.}}




{{GameCategory|armaR|Modding|Tutorials}}
{{GameCategory|armaR|Modding|Tutorials|Game Master}}

Revision as of 13:26, 19 October 2023

Step-by-step guide to how to create an editable prefab variant recognised by Game Master; either manually, or using automated process.

To make an entity editable in Game Master, several components have to be added to it and the entity needs to be replicated. Because this affects performance, we don't want to add such functionality on all prefabs - having every tree or rock configured this way would be a big hit.

Instead, we will create inherited prefab of each entity which we want editable. Doing this manually would be too time-consuming, so there are automated Workbench plugins which can take care of that.


Create Placeable Prefabs

Existing Prefab

Prefabs which exist even without their use in the editor, e.g., soldiers, vehicles, props, houses, etc, can be parsed using Create/Update Selected Editable Prefabs plugin. Behaviour of this plugin is controlled by EditablePrefabsConfig.conf config, which can be modified in plugin's settings (Plugins > Settings > Create/Update Selected Editable Prefabs).

Preparation

armareforger-editorPreviewTemplate.png

Before using this plugin, it is necessary to modify one property in EditablePrefabsConfig.conf - Image Placeholder. To do so, use Override in addon functionality on that file and then open it in Resource Manager. By default, this config is using a texture which is in packed state and plugin requires that source file (png picture) exist. Since packed data is missing source files, this property have to point to some registered resource which is using PNG as source.

If Image Placeholder is not configured properly then placeholder images will be simply not created, and Preview Image generation will not be working as intended!

Alternatively, it is also possible to use editorPreviewTemplate.png from this page and place it in UI/Textures/EditorPreviews/System folder inside the addon you are working on and register it. After that, plugin should be able to use that texture and generate placeholder preview images for you.

Select

In Resource Browser, select prefab files (*.et) of entities you want to process. Default EditablePrefabsConfig.conf ignores prefabs with _base, _Base, _dst, _Dst or _DST suffixes.

Check editable entity types to see which prefabs should be marked as editable.

Both Resource Manager and World Editor browsers are supported, but not Resource Manager 2.

Create

Usage of In-game Editor plugins

With files selected, activate Plugins > In-game Editor > Create/Update Selected Editable Prefabs

You can also press Ctrl + ⇧ Shift + U to perform this action.

After the operation is done, please check the log, it will list all processed prefabs. They can end up with one of the following states:

  • Created / Updated - successful processed
  • Failed - unable to generate the prefab, most commonly due to presence of child entity with RplComponent
  • Non-editable - some child entities which don't have editable prefab variant were detected. Please revise them and consider if some of them could be made editable as well.

If prefab creation succeeded, following things will happen:

  • New files, with E_ prefix, will be made in PrefabsEditable/Auto (except vehicles and characters - this is controlled by EditablePrefabsConfig.conf) as well as UI/Textures/EditorPreviews/Auto folders.
  • Display name, which is visible in for instance in-game editor Asset Browser, will be adjusted according to rules stored in EditablePrefabsConfig.conf. By default Name property will use following scheme #AR-EditableEntity_%1_Name where %1 is prefab filename. Such localized string can be later added to String Tables
Consider changing default string prefix for your assets from AR to your personal tag to avoid string clashes.

Once editable variants are generated, it possible to generate proper Preview Images by following instructions from Arma_Reforger:Game_Master:_Image_Generation_Tutorial page.

Maintain

Editable prefabs needs to be regenerated every time the source prefab changes. This can be achieved by several ways:

  • Activate Plugins > In-game Editor > Update All Editable Prefabs
    • This will update all auto-generated editable prefabs.
    • It will also handle renamed / moved / deleted source prefabs (enable Only File Changes attribute to perform this operation only).
  • Select an editable or a source prefab and activate Plugins > In-game Editor > Create/Update Selected Editable Prefabs

Custom Prefab

Prefabs created specifically for the editor, e.g., slots, comments, etc.

Configure

When setting-up the entity in World Editor, add following component prefabs to make it editable:

You can also add the components a new, without relying on prefabs. Do so only if you understand what they do and how to configure them.
In this article, Enfusion links are used. With those links it is possible to open specific resource just by simply clicking on that link. Enfusion links has to be manually activated in Workbench options (Workbench -> Options -> Workbench -> Register "enfusion://" protocol) before it can be used.

Choose Directory

Before turning the entity into prefab, select a directory where to create it.

All prefabs must be placed in PrefabsEditable folder in data root.

Inside, pick a folder which suits the entity the best. Do not create anything in Auto folder manually, it would get removed during the next auto-generation process!

Create Prefab

Create a new prefab by dragging the entity from World Editor into desired directory.

When asked for file name, include E_ prefix, e.g., E_MyEntity.et.

The prefix helps to distinguish editable prefabs from non-editable ones.


Register Placeable Prefabs

Editable entities must be registered in order to appear in content browser.

Create Registry Config

In Configs/Editor/PlaceableEntities, create a config of type SCR_PlaceableEntitiesRegistry.

Set Source Directory to folder where editable entity prefabs are placed. To make versioning easier, use more specialized registries (e.g., Vehicles, Props, etc.) rather than a few ones.

Add the Registry to Edit Mode

Open EditorModeEdit.et in Prefab editing mode (e.g, RMB > Edit Prefab), select SCR_PlacingEditorComponent and drag the registry config to Registries array.

Before editing EditorModeEdit.et, it might be necessary to create override in your addon! See Arma_Reforger:Asset_Browser_Mod_Integration#Using_Override_in_functionality page for more details.

Register Entities

In Resource Manager, activate Plugins > In-game Editor > Register Placeable Entities...

Choose the registry config and confirm. The plugin will register every editable entity prefab flagged as PLACEABLE inside the folder.

Repeat this step every time some prefabs in the folder are added, removed or renamed.


All editable entities which use component prefab Default_SCR_EditableEntityComponent.ct are already flagged as PLACEABLE.