private void mapLabels(int id) { //Draw the orbit overlays if (showOrbit && v != null) { SCANuiUtil.drawOrbit(TextureRect, spotmap, v, spotmap.Body); } SCANuiUtil.drawMapLabels(TextureRect, v, spotmap, data, spotmap.Body, showAnomaly, showWaypoints); }
//Draw the map overlay labels private void mapLabels(int id) { bool showWaypoints = false; if (waypoints) { showWaypoints = SCANcontroller.controller.map_waypoints; } SCANuiUtil.drawMapLabels(TextureRect, v, bigmap, data, bigmap.Body, SCANcontroller.controller.map_markers, showWaypoints); }
//Draw the map overlay labels private void mapLabels(int id) { SCANuiUtil.drawMapLabels(TextureRect, v, bigmap, data, bigmap.Body, SCANcontroller.controller.map_markers, SCANcontroller.controller.map_waypoints); }