Skip to content
Snippets Groups Projects
Commit 031c5416 authored by Sebastian Pape's avatar Sebastian Pape
Browse files

Fixing resizing issue

parent 72997b03
No related branches found
No related tags found
1 merge request!2Backporting many features from the study on top of the Dasher3D-Core
...@@ -303,12 +303,13 @@ void SDasherWidget::Tick(const FGeometry& AllotedGeometry, const double InCurren ...@@ -303,12 +303,13 @@ void SDasherWidget::Tick(const FGeometry& AllotedGeometry, const double InCurren
SCompoundWidget::Tick(AllotedGeometry, InCurrentTime, InDeltaTime); SCompoundWidget::Tick(AllotedGeometry, InCurrentTime, InDeltaTime);
//don't tick in the editor //don't tick in the editor
if (!IsEditor && !InputPaused && !URWTHVRUtilities::IsPrimaryNode()) return; if (!IsEditor && !InputPaused) return;
if(!URWTHVRUtilities::IsRoomMountedMode()){ if(!URWTHVRUtilities::IsRoomMountedMode()){
DasherMainInterface->Tick(static_cast<unsigned long>(InCurrentTime * 1000.0)); //we need to provide ticks in milliseconds DasherMainInterface->Tick(static_cast<unsigned long>(InCurrentTime * 1000.0)); //we need to provide ticks in milliseconds
} }
else else
if(URWTHVRUtilities::IsPrimaryNode())
{ {
FDisplayClusterClusterEventJson ClusterEvent; FDisplayClusterClusterEventJson ClusterEvent;
ClusterEvent.Category = "Dasher"; ClusterEvent.Category = "Dasher";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment