From f00a9ab7f11696ecbe8788f1856f3fbd56864e90 Mon Sep 17 00:00:00 2001 From: Lovisa Hassler Date: Thu, 17 Jan 2019 18:12:01 -0500 Subject: [PATCH] small fixes --- data/assets/dsn.scene | 1 + data/assets/scene/solarsystem/dsn/stations.asset | 3 ++- modules/dsn/rendering/renderablesignals.cpp | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/data/assets/dsn.scene b/data/assets/dsn.scene index 7417c864d6..70174d558f 100644 --- a/data/assets/dsn.scene +++ b/data/assets/dsn.scene @@ -9,6 +9,7 @@ asset.require('scene/solarsystem/planets') asset.require('scene/solarsystem/dwarf_planets/pluto/pluto') asset.require('scene/solarsystem/dwarf_planets/pluto/pluto_trail') asset.request('scene/digitaluniverse/stars') +asset.request('scene/digitaluniverse/milkyway') asset.request('customization/globebrowsing') asset.request('scene/digitaluniverse/grids') diff --git a/data/assets/scene/solarsystem/dsn/stations.asset b/data/assets/scene/solarsystem/dsn/stations.asset index edb45f12ac..fa25f24dbc 100644 --- a/data/assets/scene/solarsystem/dsn/stations.asset +++ b/data/assets/scene/solarsystem/dsn/stations.asset @@ -39,7 +39,8 @@ local siteColorMap = { -- stationMap -- SiteColor: determines color of the signals going to this station --- Size: The height of the station, either 34 or 70m for modern stations +-- Size: The height of the station, approximately the same as their +-- dish diameter size which is 34m or 70m for modern stations local stationMap = { DSS13 = { SiteColor = "GoldstoneColor", diff --git a/modules/dsn/rendering/renderablesignals.cpp b/modules/dsn/rendering/renderablesignals.cpp index a28f5b3ea4..e753a9f2d9 100644 --- a/modules/dsn/rendering/renderablesignals.cpp +++ b/modules/dsn/rendering/renderablesignals.cpp @@ -407,7 +407,7 @@ void RenderableSignals::update(const UpdateData& data) { GL_ARRAY_BUFFER, _vertexArray.size() * sizeof(float), _vertexArray.data(), - GL_STATIC_DRAW + GL_DYNAMIC_DRAW ); updateVertexAttributes();