ICurveEditorModule::RegisterView

Register a new view factory function that can be used on the curve editor when relevant curves are found

Unreal Engine C++ API Reference > Editor > CurveEditor > ICurveEditorModule

References

   
Module CurveEditor
Header /Engine/Source/Editor/CurveEditor/Public/ICurveEditorModule.h
Include #include "ICurveEditorModule.h"
ECurveEditorViewID RegisterView
(
    FOnCreateCurveEditorView InCreateViewDelegate
)

Remarks

Register a new view factory function that can be used on the curve editor when relevant curves are found

A maximum of 64 registered view types are supported. View type IDs are not recycled. A new custom view ID that identifies the registered view type. Any curve models that wish to support this view must |= this enum to its FCurveModel::SupportedViews;

Parameters

Name Description
InCreateViewDelegate (required) A bound delegate that creates a new instance of the view widget. Delegate signature is TSharedRef Function(TWeakPtr);

Ask questions and help your peers Developer Forums

Write your own tutorials or read those from others Learning Library