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

Add InteractiveNode.GetHandlerFromMarker method #61

Merged
merged 2 commits into from
Jul 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update InteractiveNode.cs
  • Loading branch information
UTheCat committed Jul 25, 2024
commit 2b6e7bb8ba987be33160ded49250f12f4d1f518b
4 changes: 3 additions & 1 deletion src/core/Levels/Interactives/InteractiveNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@ public static string GetTypeNameFromMarker(Node nodeMarker)
/// <br/><br/>
/// The handler/operator instance returned is the first found object whose
/// type is <see cref="Interactive"/> and is a child of the given node marker.
/// <br/><br/>
/// This method is mainly intended to be used for interactive node handlers that have
/// <see cref="ParentedToNodeMarker"/> set to true.
/// </summary>
/// <seealso cref="ParentedToNodeMarker"/>
/// <returns></returns>
public static Interactive GetHandlerFromMarker(Node nodeMarker)
{
Expand Down