Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX: ISXB-1221 input action binding discarded #2119

Merged
merged 22 commits into from
Feb 11, 2025

Conversation

smnwttbr
Copy link
Collaborator

@smnwttbr smnwttbr commented Jan 30, 2025

Description

Fix for ISXB-1221 where the chose input action binding can be discarded and not saved with the asset in different circumstances.

The root cause of this issue is the two-asset-solution we have, where we edit a copy of the asset using a serializedObject, then write that out to disk, then reload a new copy of the asset into a new serializedObject to continue editing.

This causes our UITK editor to be rebuilt and rebound to the new asset on every user interaction, which causes this issue. The workaround involves storing a reference in a static variable which is updated whenever the editor is rebuilt.

Testing status & QA

Please describe the testing already done by you and what testing you request/recommend QA to execute. If you used or created any testing project please link them here too for QA.

Overall Product Risks

Please rate the potential complexity and halo effect from low to high for the reviewers. Note down potential risks to specific Editor branches if any.

  • Complexity: 0
  • Halo Effect: 0

Comments to reviewers

Please describe any additional information such as what to focus on, or historical info for the reviewers.

Checklist

Before review:

  • Changelog entry added.
    • Explains the change in Changed, Fixed, Added sections.
    • For API change contains an example snippet and/or migration example.
    • JIRA ticket linked, example (case %%). If it is a private issue, just add the case ID without a link.
    • Jira port for the next release set as "Resolved".
  • Tests added/changed, if applicable.
    • Functional tests Area_CanDoX, Area_CanDoX_EvenIfYIsTheCase, Area_WhenIDoX_AndYHappens_ThisIsTheResult.
    • Performance tests.
    • Integration tests.
  • Docs for new/changed API's.
    • Xmldoc cross references are set correctly.
    • Added explanation how the API works.
    • Usage code examples added.
    • The manual is updated, if needed.

During merge:

  • Commit message for squash-merge is prefixed with one of the list:
    • NEW: ___.
    • FIX: ___.
    • DOCS: ___.
    • CHANGE: ___.
    • RELEASE: 1.1.0-preview.3.

After merge:

  • Create forward/backward port if needed. If you are blocked from creating a forward port now please add a task to ISX-1444.

Sorry, something went wrong.

@smnwttbr smnwttbr force-pushed the isxb-1221-input-action-binding-discarded branch from 77b3fe9 to 9dc97d8 Compare January 30, 2025 04:57
@smnwttbr smnwttbr requested review from ekcoh and Pauliusd01 January 30, 2025 05:03
@smnwttbr smnwttbr marked this pull request as ready for review January 30, 2025 05:10
@Pauliusd01
Copy link
Collaborator

@smnwttbr seeing a lot of CI failures, is this one's ready?

Copy link
Collaborator

@ekcoh ekcoh left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for looking into this. I think you are right about the underling root cause and this may (or may not) be a bit of duck taping on top of the underlying problem. It's great if this resolves the issue but I am still thinking it may have other side-effects but maybe I am wrong on this. I added some comments / questions as a start on the review process.

@@ -89,10 +90,10 @@ public void OnGUI()
EditorGUILayout.EndHorizontal();
}

//TODO: on next major version remove property argument.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would recommend filing a JIRA ticket on this if/when this lands, otherwise it would be forgotten.

// The picker dropdown is a separate window and does not have access to the changed serializedObject reference.
// This could be removed if the InputControlPathEditor is converted to UITK with a stable, persistent serializedObject backing this editor.
// This property will be shared among multiple asset editor windows.
private static SerializedProperty s_pathProperty { get; set; }
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This static SerializedProperty, wouldn't it leak memory? Its referencing a SerializedObject that was dynamically allocated and may/would be disposed from outside this editor?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additionally this assumes there can only exist one InputControlPathEditor instance right?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, there will be a dangling reference tht may hang around. I'll add some code to clean it up when the editor is closed.

Yes, only one instance of the InputControlPathEditor will work at a time. I think this is ok, as it is a popup window, and disappears when it loses focus.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@smnwttbr smnwttbr requested a review from ekcoh February 6, 2025 01:27
@smnwttbr smnwttbr merged commit 2a37caa into develop Feb 11, 2025
94 checks passed
@smnwttbr smnwttbr deleted the isxb-1221-input-action-binding-discarded branch February 11, 2025 06:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants