View Issue Details

IDProjectCategoryView StatusLast Update
0005005NoesisGUIUnrealpublic2026-04-21 12:43
Reporterttermeer-rcg Assigned Tohcpizzi  
PrioritynormalSeverityminor 
Status resolvedResolutionfixed 
Product Version3.2.12 
Target Version3.2.13Fixed in Version3.2.13 
Summary0005005: EnhancedInputActionTrigger ignores EnableActions
Description

When changing the value for EnableActions to false in a Noesis Instance, this only disable internal noesis enhanced input actions.
EnhancedInputActionTrigger will remain active. This is probably an edge case as we have multiple Noesis Instance and we only want one to be active.

PlatformAny

Activities

ttermeer-rcg

ttermeer-rcg

2026-04-20 16:07

reporter   ~0012230

Last edited: 2026-04-20 16:07

The issue can be fixed by modifying EnhancedInputActionTrigger.cpp (line 119) with:

void EnhancedInputActionTrigger::OnInputAction()
{
    if (mInstance != nullptr && mInstance->EnableActions)
    {
        InvokeActions(nullptr);
    }
}
hcpizzi

hcpizzi

2026-04-21 12:43

developer   ~0012236

Thank you very much for the report. I've gone on and integrated your change in for the next release.

Issue History

Date Modified Username Field Change
2026-04-20 15:59 ttermeer-rcg New Issue
2026-04-20 16:07 ttermeer-rcg Note Added: 0012230
2026-04-20 16:07 ttermeer-rcg Note Edited: 0012230
2026-04-20 17:41 jsantos Assigned To => hcpizzi
2026-04-20 17:41 jsantos Status new => assigned
2026-04-20 17:41 jsantos Target Version => 3.2.13
2026-04-21 12:43 hcpizzi Status assigned => resolved
2026-04-21 12:43 hcpizzi Resolution open => fixed
2026-04-21 12:43 hcpizzi Fixed in Version => 3.2.13
2026-04-21 12:43 hcpizzi Note Added: 0012236