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:
Emil Axelsson
2016-09-22 19:33:05 +02:00
311 changed files with 12363 additions and 4144 deletions

View File

@@ -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);

View File

@@ -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();