mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-25 05:29:41 -06:00
Merge branch 'develop' of github.com:OpenSpace/OpenSpace into feature/parallelconnection
Conflicts: include/openspace/engine/openspaceengine.h src/engine/openspaceengine.cpp src/interaction/interactionhandler.cpp src/network/parallelconnection.cpp src/scripting/scriptengine.cpp
This commit is contained in:
@@ -95,8 +95,8 @@ void NetworkEngine::publishStatusMessage() {
|
||||
|
||||
uint16_t messageSize = 0;
|
||||
|
||||
double time = Time::ref().currentTime();
|
||||
std::string timeString = Time::ref().currentTimeUTC();
|
||||
double time = Time::ref().j2000Seconds();
|
||||
std::string timeString = Time::ref().UTC();
|
||||
double delta = Time::ref().deltaTime();
|
||||
|
||||
messageSize += sizeof(time);
|
||||
|
||||
@@ -994,7 +994,7 @@ void ParallelConnection::sendTimeKeyframe() {
|
||||
kf._dt = Time::ref().deltaTime();
|
||||
kf._paused = Time::ref().paused();
|
||||
kf._requiresTimeJump = _timeJumped;
|
||||
kf._time = Time::ref().currentTime();
|
||||
kf._time = Time::ref().j2000Seconds();
|
||||
|
||||
//timestamp as current runtime of OpenSpace instance
|
||||
kf._timestamp = OsEng.runTime();
|
||||
|
||||
Reference in New Issue
Block a user