* Added color code as requested in UE-1629507
* Added tooltip for all color codes
* Fixed Controller type display name bug for Structs
Misc:
As discussed in prior meetings:
* Removed IsEqual behaviour
* Renamed SetValue behaviour to OnValueChanged
#jira UE-1629507
#preflight 6323af8b8131e92d65add534
[CL 22042479 by venugopalan sreedha in ue5-main branch]
* Allow drag-drop from Exposed Properties to Conftrollers
* Automatically create new Controller of correct type and apply Bind behaviour to it.
* Also allow drag-drop on to existing Controllers with auto bind upon drop.
#jira UE-162439
#rb paul.vincent
#preflight 6323489a67163bf660045eed
[CL 22038440 by venugopalan sreedha in ue5-main branch]
#rb simon.therriault, paul.vincent
For original code review please see: https://p4-swarm.epicgames.net/reviews/21749275
(this CL has been migrated over from Main branch, where the review originated)
#jira UE-156705
#preflight 6320e2478838676d1005e20a
[CL 21997811 by venugopalan sreedha in ue5-main branch]
Making it fit with the other Built-in Behaviour File Locations
#jira none
#rb simon.therriault
#preflight 630687fdc744dac9673de429
[CL 21551696 by Patrick Gross in ue5-main branch]
- 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]