- Add Button to copy the path of a selected asset into the Path Array
- Replace Target Property Name as Target and use more visual representation instead.
- Add Token *INPUT templating into the Path Array.
- Add Preview of Set-up Working Path, including Token Input
- Add External Image Pathing
#rb simon.therriault
#jira UE-151173
#preflight 62ffee6ffa1ac183e59bc4d9
[CL 21464569 by Patrick Gross in ue5-main branch]
Fix issues accidently added: Nullptr Crash + Value wrongly set (or not set at all).
#jira UE-156893
#rb simon.therriault
#preflight 62feb48257316140a800f6c5
[CL 21458131 by Patrick Gross in ue5-main branch]
Range Mapping Behaviour for the Remote Control Logic, which adds...
- Ability to lerp a selection of numerical (float, double) and structs (FVector, FRotator) based on Actions presented.
- Ability to activate non-Lerp Actions based on their distance towards the Controllers normalized Value and a Threshold.
Supports: Float Controller
#jira UE-156893
#rb simon.therriault, paul.vincent, venugopalan.sreedha
#preflight 62fd5ac40f2aefc97ac09f30
[CL 21433725 by Patrick Gross in ue5-main branch]
1. Advanced handling of Else condition for supporting multiple actions associated with each unique condition value and Else branch
2. Add All Actions now correctly stores condition value for each action allowing quicker creationg of complex scenarios.
3. Drag-and-drop Group feature implemented for quicker user workflow
4. Crash fix 1 - GC crash related fixed
5. Crash fix 2 - Handled edge case for opening of RC preset in a different level (than where the actions were created) or if a level exits with the RC preset saved, but not the bound actors.
#jira UE-156853
#preflight 62daa5bf4b6d775f5f4810cf
[CL 21219972 by Venugopalan Sreedha in ue5-main branch]
Add Behaviour with custom Widgets, which takes a String Input and loads/sets the Asset onto a targeted Property.
#jira UE-151173
#rb simon.therriault
#preflight 62d20cb63c3df323906c0ad1
[CL 21120299 by Patrick Gross in ue5-main branch]
API support:
1) bIsEnabled boolean flag for URCBehaviour objects
2) SetIsBehaviourEnabled(bool) function in FRCBehaviourModel UI model.
3) IsBehaviourEnabled() function in FRCBehaviourModel UI model.
Usage: Invoked SetIsBehaviourEnabled as required on a checkbox (or other appropriate widget) change event.
Note: Also includes a minor UI change for storing Behaviour Title Text widget (part of the current Behaviours list panel) as a variable
#preflight 62ade0cd26346e9ac5301561
[CL 20717629 by Denys Dubinin in ue5-main branch]
UE-155855
For manipulating Controllers through HTTP requests
The following routes have been added:
1. SetPresetController - Set the value of a Controller (on a Remote Control Preset asset).
HTTP Parameters: Preset Name, Controller Name, Body: JSON;
Example:
(PUT) http://127.0.0.1:30010/remote/preset/PresetNameParam/controller/SomeBoolController
Body (raw JSON): { "PropertyValue": false}
2. GetPresetController - Fetch the value of a Controller (on a Remote Control Preset asset).
HTTP Parameters: Preset Name, Controller Name, Body: None
Example:
(GET) http://127.0.0.1:30010/remote/preset/PresetNameParam/controller/SomeBoolController
HTTP Response: { "PropertyValue": false}
Interception support has been provided as well by adding an nDispaly cluster implementation.
Pending work:
Unit tests for new route handlers to be added to RemoteControlIntereceptionTest.cpp. Review will be updated with this.
#preflight 62a0cca0232daff7b3f55c21
[CL 20559126 by Denys Dubinin in ue5-main branch]
#jira UE-155440
* Base implementation of UI for Controllers, Behavior, Actions
* Additional changes for UI Conformance to Figma
* Further revisions will bring implementation of any UI functionality missing or incomplete in the original prototype.
#preflight 6297a7819907cbadba985a17
[CL 20455574 by Denys Dubinin in ue5-main branch]
Runtime part is ready for review
#rb simon.therriault
#jira UE-146247
#preflight 62728aa8ec1566a70616aeb1
[CL 20041750 by Denys Dubinin in ue5-main branch]