You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Custom Preview for .abc files. - Ability to inspect animation with a timeline control - Editor Viewport for Geometry Cache assets #jira UE-177999 #rb Anousack.Kitisa [CL 35090565 by vedang javdekar in ue5-main branch]
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Widgets/SWidget.h"
|
|
#include "ITimeSlider.h"
|
|
#include "TimeSliderArgs.h"
|
|
#include "Input/CursorReply.h"
|
|
#include "Input/Reply.h"
|
|
|
|
class UGeometryCacheComponent;
|
|
|
|
class FGeometryCacheTimelineBindingAsset : public TSharedFromThis<FGeometryCacheTimelineBindingAsset>
|
|
{
|
|
public:
|
|
FGeometryCacheTimelineBindingAsset(TWeakObjectPtr<UGeometryCacheComponent> InPreviewComponent);
|
|
|
|
TWeakObjectPtr<UGeometryCacheComponent> GetPreviewComponent() const { return PreviewComponent; }
|
|
|
|
/** Get the framerate specified by the anim sequence */
|
|
FFrameRate GetFrameRate() const;
|
|
|
|
/** Get the tick resolution we are displaying at */
|
|
int32 GetTickResolution() const;
|
|
|
|
/** Get the current view range */
|
|
FAnimatedRange GetViewRange() const;
|
|
|
|
/** Set the current view range */
|
|
void SetViewRange(TRange<double> InRange);
|
|
|
|
/** Get the working range of the model's data */
|
|
FAnimatedRange GetWorkingRange() const;
|
|
|
|
/** Get the playback range of the model's data */
|
|
TRange<FFrameNumber> GetPlaybackRange() const;
|
|
|
|
/** Get the current scrub position */
|
|
FFrameNumber GetScrubPosition() const;
|
|
|
|
/** Get the current scrub time */
|
|
float GetScrubTime() const;
|
|
|
|
/** Set the current scrub position */
|
|
void SetScrubPosition(FFrameTime NewScrubPostion) const;
|
|
|
|
/** Handle the view range being changed */
|
|
void HandleViewRangeChanged(TRange<double> InRange, EViewRangeInterpolation InInterpolation);
|
|
|
|
/** Handle the working range being changed */
|
|
void HandleWorkingRangeChanged(TRange<double> InRange);
|
|
|
|
private:
|
|
TWeakObjectPtr<UGeometryCacheComponent> PreviewComponent;
|
|
|
|
FAnimatedRange ViewRange;
|
|
|
|
FAnimatedRange WorkingRange;
|
|
|
|
FAnimatedRange PlaybackRange;
|
|
|
|
}; |